Change hamburger menu visibility
-
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!
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.