html - Change color of bootstrap navbar on hover link? -


i want know how change color of links when hover on them in nav bar, ugly color.

thanks suggestions?

html:

<div class="container">     <div class="navbar">         <div class="navbar-inner">             <ul class="nav">                 <li class="active"><a href="#">home</a></li>                 <li><a href="#">link one</a></li>                 <li><a href="#">link two</a></li>                 <li><a href="#">link three</a></li>             </ul>         </div>     </div> </div> 

for bootstrap 3 how did based on default navbar structure:

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {     background-color: #ffff00;     color: #ffc0cb; } 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -