Mobile burger menu isn't sticky

Hello there,

I’m currently working on my portfolio and it appear that the mobile burger menu isn’t sticky.
I’ve selected “fixed top” in the header section from the global settings. It used to work before and it works on desktop.
I’ve search throught the css, but i didn’t found a solution…

Page link : https://salii.fr/project-rm-01
Theme : X theme

Thanks a lot,

Alrick

Hello Alrick,

Thanks for writing in! When you select Fixed Top as your navbar position, it smaller screens or mobile, the navbar will not be sticky by default. You will need to modify the custom css to make it sticky navbar in mobile. To do that, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

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

We would love to know if this has worked for you. Thank you.

1 Like

Hello again,

it’s perfect, it’s working !!

Thanks a lot :slight_smile:

You’re welcome Alrick!

Cheers.

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