Forum Moderators: not2easy
[edited by: DrDoc at 2:42 pm (utc) on June 9, 2004]
[edit reason] Removed specifics [/edit]
Welcome to Webmasterworld :)
This could be solved by using classes and wrapping links in a corresponding div. That way you can control your anchor properties as separate entities.
Also you may have your anchor properties out of order.
they must fall like this:
Link
Visited
Hover
Active
So the values do not counteract one another.
Ta
Limbo
If I understand what you're asking correctly, you would like two different styles for your links on the same page. This can be done by creating a class like this on your style sheet:
a:link {
color: #666;
}
a:visited {
color: #666;
}
a:hover {
color: #999;
}
a:active {
color: #cccccc;
}
a.otherlink:link {
color: #fff;
}
a.otherlink:visited {
color: #fff;
}
a.otherlink:hover {
color: #666;
}
a.otherlink:active {
color: #999;
}
all normal links will use the first style, links that you want to use the second style would be called like this:
<a class="otherlink" href="path/to/link">Link Name</a>
I hope this helps!
_________________________
Shane