Problems with css for my navigation bar -


i trying make when user hovers on link in navigation bar font colour changes blue cant change it. have tried this:

#nav a:hover{ color: #1b8ad8; background: none; text-decoration: none; } 

but still not working. help? jsfiddle:https://jsfiddle.net/0k6wnvs6/

try below css

ul#nav li a:hover{   color: #1b8ad8;   background: none;   text-decoration: none; } 

Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -