This site has a navigation menu who's elements I want to have a background image display on hover, or when the page is active.
On line 1428 of style.css, I have:
Code:
.main-navigation li a:hover, .main-navigation li a:current, .main-navigation li a:active {
background: url(images/menu_hover.jpg) repeat-x top;
}
This doesn't work.
It does work if I apply the background image to a:link, so the image URL is correct.
Why isn't it working for a:hover, a:current, a:active?