I\'m quite new to Bootstrap, I\'ve set up a dropdown pill and played around with the colours.
What I\'d like to do is change the colour of the dropdown title pill after
You would override the hover, active and focus state of .nav-pills like this..
.nav-pills
.nav-pills>li>a:hover { background-color: #FF6699; } .nav-pills .open>a, .nav-pills .open>a:active, .nav-pills .open>a:focus{ background-color: #FF6699; }
Demo