• Resolved AJ

    (@permaculturetreegeek)


    Is it possible to have the navigation menu open by default when visiting the page in full screen, but not on mobile?

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

    (@anlino)

    Hi permaculturetreegeek,

    It’s possible if you’re willing to write a little CSS. Open style.css, go to line 255 and change display: none; to display: block;

    Next, go to line 2149 and add the following lines of code:

    body > .navigation {
         display: none;
    }

    If you follow the steps above, the navigation should be visible as default and hidden when on mobile devices. Let me know if it works out.

    Thread Starter AJ

    (@permaculturetreegeek)

    Thanks! Worked perfectly.

    Thread Starter AJ

    (@permaculturetreegeek)

    … actually I had to move

    body > .navigation {
         display: none;
    }

    to line 2166 instead and now it works.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Navigation open by default’ is closed to new replies.