I'm trying to make the "hover" background in my whole site be a certain color. So I added the a:hover css style which is working fine. However, I want the MENU items (top menu) to still use the background image they were using when hovered over but instead they're now using the background color I've assigned to all the a:hover tags.
I've put an !important by the background-image but it is still being overridden by that background color for some reason! What am I missing? Here's the code I used:
#menu ul li:hover {
background-image: url(../images/Green/menubar_over.png)!important;
}
Site is at:
killearnlakesrealty.com/ Thanks!