Most likely it is because this style from pandf.css:
Code:
a:hover {
color: #FFFFFF;
background-color: #387DB5;
}
Is being used for these links hover styled like so in chromemenu.css:
Code:
.chromestyle ul li a:hover{
background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
}
as well as these links hover styles:
Code:
.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #F0F0F0;
}
If you don't want the hover color for these links to follow the only link hover color set for the page, add a color property/value pair to their more specific selectors. And, just to be on the safe side, make sure to include a space before the opening curly brace (IE requires that for some odd reason in some cases), examples:
Code:
.chromestyle ul li a:hover {
color: #494949;
background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
}
and:
Code:
.dropmenudiv a:hover { /*THEME CHANGE HERE*/
color: black;
background-color: #F0F0F0;
}
Bookmarks