• My navigation is switching to a hamburger at 600px. I cannot figure out what CSS tag to use or where to change this. I want it to be more like 900px.

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

Viewing 1 replies (of 1 total)
  • Same here. I imagine this is needed very often, but I could not find anything …
    Have you been able to solve it?

    EDIT: Looking at the source, there does not seem to be a proper way, sadly. I ended up adding some CSS:

    body .wp-block-navigation__responsive-container-open:not(.always-shown) {
    	display: block !important;
    }
    body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    	display: none !important;
    }
    @media (min-width: 880px) {
    	body .wp-block-navigation__responsive-container-open:not(.always-shown) {
    		display: none !important;;
    	}
    	body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    		display: block !important;
    	}
    }
    • This reply was modified 2 years, 7 months ago by lausianne.
    • This reply was modified 2 years, 7 months ago by lausianne.
Viewing 1 replies (of 1 total)
  • The topic ‘Navigation Breakpoint’ is closed to new replies.