In the mobile version, when scrolling the side menu, instead of stopping at the end of the menu the main page of the website starts to appear below the menu. I’m using the dawn theme. Someone knows how to solve it?
@GoncaloTomas hey, thanks for posting here.
can you please share the link to inspect it, thanks.
Hey, Thank you for asking any question. I think this is problem related css and will be solved to changes the position setting or it seems like it has issues in main-draw-menu.liquid. If really you want to solve, please share in more detail data with us like share store domain link. To solve, I need to know exactly situation.
The theme has CSS rules to prevent scrolling when menu open.
There are 2 apps in your shop which override these rules – one from Foxify and another from Avada (faq).
You can either talk to them or add extra CSS rules to override their rules ![]()
Try adding the following to Custom CSS under theme settings in theme customize:
body[class*=overflow-hidden] {
overflow: hidden !important;
}
html:has(body[class*=overflow-hidden]) {
overflow: hidden !important;
}
