Last active
January 14, 2019 22:35
-
-
Save generatepress/c23aef2d05807c39bb32 to your computer and use it in GitHub Desktop.
Initiate the mobile menu at your desired width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 768px) { | |
.main-navigation .menu-toggle, | |
.main-navigation .mobile-bar-items, | |
.sidebar-nav-mobile:not(#sticky-placeholder) { | |
display: block; | |
} | |
.main-navigation ul, | |
.gen-sidebar-nav { | |
display: none; | |
} | |
[class*="nav-float-"] .site-header .inside-header > * { | |
float: none; | |
clear: both; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment