Archived topic
How to prevent scrolling within the offcanvas panel
3 replies · Started by Benny on February 22, 2022
Hey there, im building a website with a offcanvas menu and the site header should be visible. But if i scroll, the menu items stay visible but the site header isnt fixed. So either i fix the site header (only in the offcanvas menu) or i prevent scrolling and hide the scrollbar. Is this possible?
You can see the problem if clicking on the menu button --> http://klangzauberei.6boashjmjl-ewx3lgll86zq.p.runcloud.link/
Hi there,
you can try adding this CSS:
.slide-opened body {
overflow-y: hidden;
}
Works perfectly. Love it, thank you very much!
You're welcome