I'm not positive but, give this a whirl:
Code:
<style type="text/css">
a:link {
color:#2E304E;
}
a:visited {
color:#2E304E;
}
a:hover {
color:#FF9900;
}
</style>
The expanded listing style is just that (a different way to look at it), the only real changes are the order of the selectors, the use of the # prefix (required by most browsers) and the addition of the current proper use of the type attribute with the opening style tag. The theory being that the last listed selector (other things being equal) will take precedence.
Bookmarks