Hi,
I'm having a bit of trouble with the jQuery css() function at the moment. It is changing the css value of the anchor element's border-top-color instead of just the anchor element's border-top-color when hovered. Below is my code.
$("#header #headerlist li a:hover").css("border-top-color","rgb(225, 149, 79)");
Any ideas why it changes the "#header #headerlist li a" border-top-color and the "#header #headerlist li a:hover" properties rather than just the "#header #headerlist li a:hover" property?
Thanks for your time,
Tom