Archived topic
increase with of the "Slideout-Navigation"
1 reply · Started by Jenny on June 12, 2022
Viewing posts 1–2 of 2
Hello :)
is there a possibility to to increase the width of the slideout-navigation?
https://bilderupload.org/delete.php?bild=256b17700-bildschirmfoto-2022-06-12&del=Bfh68ny5r4Cnq79PuOMl
Thank you for looking it up,
Jenny
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.