• My site currently displays hamburger menu at 1024. Trying to shift this is 767.

    I can’t for the life of me find the element name for the hamburger menu which I should hide. Am I missing something, or is this being displayed totally outside of the CSS (i.e. with JS??)

    Current custom CSS (to display the normal menu down to 767) is this:

    @media only screen and (max-width: 1024px) {
    #responsive-menu {display: flex;}
    }

    @media only screen and (max-width: 767px) {
    #responsive-menu {display: none;}
    }

    Now I just need to do the opposite for the hamburger menu, but I can’t find the element to target. Any ideas?

    Thanks!

    • This topic was modified 3 years, 10 months ago by James Huff. Reason: redundant link removed

    The page I need help with: [log in to see the link]

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