Skip to content

Instantly share code, notes, and snippets.

@woogist
Created February 3, 2014 12:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogist/8783058 to your computer and use it in GitHub Desktop.
Save woogist/8783058 to your computer and use it in GitHub Desktop.
styles for hiding and showing the secondary mobile menu in the right places
@media only screen and (min-width: 768px) {
/* Desktop styles go below this line */
#secondary-menu-container{
display: block !important;
}
#secondary-menu-container-mobile{
display: none !important;
}
}
#secondary-menu-container{
display: none;
}
#secondary-menu-container-mobile{
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment