Site logo

Archived topic

increase with of the "Slideout-Navigation"

1 reply · Started by Jenny on June 12, 2022

Viewing posts 1–2 of 2

Hi there,

try adding this CSS:

#generate-slideout-menu.offside {
    --oc-width: 300px;
    width: var(--oc-width);
}

#generate-slideout-menu.offside--right.is-open {
    transform: translate3d( calc( -1 * var(--oc-width) ) ,0,0);
}

#generate-slideout-menu.offside--right {
    left: auto;
    right: calc( -1 * var(--oc-width) );
}

I have set it to 300px, you can change the value in this line: --oc-width: 300px;

This archived topic is closed to new replies.