Sticky hamburger menu on mobile X Theme not working

Hi, my header logo and nav menu are sticky when viewing on desktop laptop, but when on mobile and tablet the nav hamburger menu and logo dont stay fixed (not sticky). Where is the option in X theme setting to make hamburger menu and logo (entire header) stays fixed on top (sticky) as I scroll down the page?
Thanks.
the website is adiconpest.com

1 Like

Hi there,

Please add this code in the custom CSS:

@media (max-width: 979px) {
    .x-navbar-fixed-top {
        position: fixed;
    }
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.