Skip to content

Instantly share code, notes, and snippets.

@woogist
Created February 3, 2014 12:32
Show Gist options
  • Select an option

  • Save woogist/8783058 to your computer and use it in GitHub Desktop.

Select an option

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