Sticky Menu for desk top and mobile

How can I make the header sticky for desktop and mobile and tablets ?

Hi @rotation,

If you are using X, set the Navbar Position in X > Theme Options > Header to Fixed Top then add this code in the Global 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.