Skip to content

Instantly share code, notes, and snippets.

@generatepress
Last active May 15, 2023 22:00
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save generatepress/282078076cd8631c17717d5b8640c043 to your computer and use it in GitHub Desktop.
Save generatepress/282078076cd8631c17717d5b8640c043 to your computer and use it in GitHub Desktop.
Initiate the mobile header at your desired width. Change 768px to whatever you like.
@media( max-width: 768px ) {
.site-header,
#site-navigation,
#sticky-navigation {
display: none !important;
opacity: 0;
}
#mobile-header {
display: block !important;
opacity: 1;
width: 100% !important;
}
#mobile-header .main-nav > ul {
display: none;
}
#mobile-header.toggled .main-nav > ul,
#mobile-header .menu-toggle,
#mobile-header .mobile-bar-items {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment