I am trying to change the bootstrap navbar dropdown link's color when clicked or selected. Right now it changes to the specified color for a split second, and then just switches back to the default gray. Here is my CSS:
li.dropdown:active { background-color: teal; } The drop down:
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="nav-text">Office Info</span> <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="faq.php">FAQ</a></li> <li><a href="privacy.php">Privacy</a></li> <li><a href="health.php">Health Links</a></li> </ul> </li>
!important?