I can't seem to change the hover colour of the menu links on the left hand side of my page. The site is hosted at a test location here : http://rantandrage.purpleparasol.com/ .
The vertical menu on the left reads Sale Room, Babies, Girls Clothes etc, and I have see that the CSS is called product_section. So I went to actinic.css and changed the a.product_section:hover code to have an orange background and white text (see below), but it remains brown with orange text.
Why does the background-color and color CSS not take effect? I can change the hover CSS to do all sorts of things and that works - like say putting a pink border on the hover, but changing the text colour to white and the background to orange is being ignored.
a.product_section:hover {
color:#FFFFFF;
background-color:#FF6600;
}
Help.
The vertical menu on the left reads Sale Room, Babies, Girls Clothes etc, and I have see that the CSS is called product_section. So I went to actinic.css and changed the a.product_section:hover code to have an orange background and white text (see below), but it remains brown with orange text.
Why does the background-color and color CSS not take effect? I can change the hover CSS to do all sorts of things and that works - like say putting a pink border on the hover, but changing the text colour to white and the background to orange is being ignored.
a.product_section:hover {
color:#FFFFFF;
background-color:#FF6600;
}
Help.
Comment