Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active June 8, 2017 14:06
Show Gist options
  • Save ScarletPonytail/0e9709c651de2b774fbbdfe3437b229c to your computer and use it in GitHub Desktop.
Save ScarletPonytail/0e9709c651de2b774fbbdfe3437b229c to your computer and use it in GitHub Desktop.
CSS - Center align a Bootstrap Menu
/* Menu Styling Override */
@media (min-width: 992px) {
.navbar-nav {
float : none !important;
margin: 0 auto !important;
display: block !important;
text-align: center !important;
}
.navbar-nav > li {
display: inline-block !important;
float: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment