Reputation:
I tried several methods to change the color of my navigation menu links but no result found!
For example I did this:
.navbar {
min-height:32px !important;
background-color:#0061ab !important;
color:#fff !important;
}
.navbar-custom .navbar-nav > li > a {
color:#fff !important;
}
And the result is this:
So how to fix that ?
Upvotes: 0
Views: 402
Reputation: 31
Creating a new custom css file and linking that after bootstrap.css might help overriding the bootstrap ui classes.
There is also separate thread about twitter bootstrap. Change navbar color in Twitter Bootstrap 3
Upvotes: 2