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

java - unable show chart in xls document using jasper reports -

java.lang.RuntimeException: Could not generate dummy secret at sun.security.ssl.RSAClientKeyExchange.<init> -

javascript - How to change image src on success AJAX -