Skip to content

Instantly share code, notes, and snippets.

@netdoctor
Last active June 9, 2019 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netdoctor/1176d720d9e211b13ab0af057d1d1069 to your computer and use it in GitHub Desktop.
Save netdoctor/1176d720d9e211b13ab0af057d1d1069 to your computer and use it in GitHub Desktop.
Collapse webflow menu at 1024px with custom css
<style>
@media screen and (max-width: 1024px) {
.w-nav[data-collapse="medium"] .w-nav-menu {
display: none;
}
.w-nav[data-collapse="medium"] .w-nav-button {
display: block;
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment