• Resolved romainkr

    (@romainkr)


    Hi Anders,
    Is it possible to make the nav menu sticky ? Some posts are long and I’d like to menu to keep visible.
    thanks in advance,
    Romain

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi @romainkr,

    Go to Appearance → Customize → Additional CSS (the menu labels might be different in your language) and add the code below:

    @media ( min-width: 1001px ) {
    .sidebar {
    position: fixed;
    bottom: 0;
    overflow: auto;
    }
    }

    Let me know if that does it.

    — Anders

    Thread Starter romainkr

    (@romainkr)

    Hi Anders,

    It works perfectly !
    Thanks a lot for your help !

    Romain

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘fixed menu’ is closed to new replies.