On my website, I added a tab called newarrival
at the top of the page. When you hover over this tab, I want the text to turn blue to indicate that it's a link. However, despite my efforts, it doesn't seem to be working as expected. You can see the tab on my site here: www.greenieproducts.com
I thought this CSS code would do the trick:
#newarrival a:hover
{
color:blue!important;
}
But for some reason, it's not working. I even tried:
a #newarrival :hover
{
color:blue!important;
}
If anyone could provide me with some guidance on how to fix this issue, I would greatly appreciate it. Thank you very much.