Forum Moderators: not2easy
a.list {font-family:arial;
font-size:10px;
text-decoration:none;
color:#7579D7;
}
a.list:hover {font-family:arial;
font-size:10px;
text-decoration:none;
color:#5C62F4;
}
Doc type:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Has anyone ever experienced this? It's maddening. Thanks in advance!
Kelly
1) to me, it sounds like you haven't set the styles for :visited.
if a link hasn't been visited at all, then it will takes the styles from a, or a:link
if it has been visited, then it will take the styles from a:visited.
that is why the link colour is changing when you change the url to something else - it is probably an unvisited or visited page (...the opposite of what it originally was).
2) you might have styled the links in the wrong order in your CSS. if you do them in the wrong order then you will get wierd effects depending which browser you are using. the correct order is like this
a:link
a:visited
a:hover
a:active