Making the mobile menu static
While using Gema you might have noticed that the menu is sticky on mobile. This means that, while you scroll on the page, the menu will continue to display at the top of the page.
If you want it to be static and not follow the visitor as they browse around, you need to follow these steps:
- Navigate to Appearance → Customize → Additional CSS.
- Add the code below:
/*Make mobile menu static*/
.mobile-header-wrapper {
position: absolute;
}
- Click the Publish button.
That’s it.
Updated on February 21, 2022