Display Mobile menu on desktop view everywhere
-
The request is to display the mobile hamburger menu instead of the current primary navigation. They don’t want the horizontal menu w/text-links to be seen – just the simple 3-bar icon on the right. (maybe the icon should be a bit larger)
I used the css below on the linked page. What am I missing? The first bit has removed the primary menu as desired, but the hamburger menu does not appear for any view. Only the logo appears.
It’s a mystery to me as to why it’s not working. Hopefully someone smarter is available to take a peek? Have I used the wrong selectors?
#g1-primary-nav {
display: none;
}
@media (min-width: 680px) {
#g1-primary-nav-switch {
display: block;
visibility: visible;
}
}Fingers crossed for a resolution! I’m hopeful it’s a simple one ??
The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.