I’ve tried to do it by css, using:
#mainmenu ul li:hover a
{
color: #000000;
}
But it is not working, then i tried using jQuery, with:
function change()
{
$(this).find('a').css('color','#000000');
}
Calling onMouseOver inside the <li>, but it is also not working…
Any idea?
Try with
color: black !importantand if it works then look for the style overriding it and re-organize your code.