• Hello, the normal navigation menu is fixed / sticky. But not them mobile. How can I set it fixed, too?

Viewing 1 replies (of 1 total)
  • Hello @dirk01,

    To make the header sticky on the mobile devices as well, please try adding below custom CSS via Dashbooard > Appearance > Custom Codes > Additional CSS.

    @media only screen and (max-width: 1024px) {
        .mobile-site-header {
            position: fixed;
            width: 100%;
            z-index: 999;
        }
    }

    If you have any further questions, please let us know.

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Make mobile menu sticky’ is closed to new replies.