Skip to content

Instantly share code, notes, and snippets.

@johhansantana
Created December 26, 2015 17:54
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 johhansantana/d3ae0718ad25386c7885 to your computer and use it in GitHub Desktop.
Save johhansantana/d3ae0718ad25386c7885 to your computer and use it in GitHub Desktop.
collapse navbar on higher width
@media (min-width: 768px) and (max-width: 1175px) {
.navbar-collapse.collapse {
display: none !important;
}
.navbar-collapse.collapse.in {
display: block !important;
}
.navbar-header .collapse, .navbar-toggle {
display:block !important;
}
.navbar-header {
float:none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment