Hi there,
How does your code look like? In what order did you define the selectors?
If you override the font-weight property for the :visited selector *after* you define the hover property, the :visited will win, and the font won't turn bold. So this will work:
Code:
a:visited
{
font-weight: normal;
}
a:hover
{
font-weight: bold;
}
but this won't:
Code:
a:hover
{
font-weight: bold;
}
a:visited
{
font-weight: normal;
}
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.