• hi
    i would like to keep my site style minimalistic and therefore have the hamburger menu on all displays – from small to very big. can I change that somehow? thank you

Viewing 1 replies (of 1 total)
  • Hi @philllie1,

    > i would like to keep my site style minimalistic and therefore have the hamburger menu on all displays – from small to very big. can I change that somehow? thank you

    Good question! It might take a bit of work on your part to make it look good, but here’s what I would do:

    1. Hide the primary and secondary navigation always:

    .primary-navigation, .secondary-navigation {
        display: none;
    }

    2. Always show the hamburger:

    button.menu-toggle {
        display: block;
    }

    That will get you part of the way there, but you’ll need to account for other things like the search bar, and the cart at the header, too.

    Cheers,

Viewing 1 replies (of 1 total)
  • The topic ‘How to: hamburger menu on large/desktop displays too’ is closed to new replies.