Quote:
|
Originally Posted by Ca$h
<style TYPE="text/css">
<!--
body {bgcolor=#000000; font-size:10pt; color: #ffffff; font-family: Arial, Helvetica, sans-serif}
td {font-size:16pt; color: #ffffff; font-family: Arial, Helvetica, sans-serif}
A:link {text-decoration: none; color: #ffffff;}
A:visited {text-decoration: none; color: #C4CB0E;}
A:active {text-decoration: underline; color: #C4CB0E;}
A:hover {text-decoration: underline; color: #C4CB0E;}
--></style>
Im using that CSS on my site, so ALL visited links are #C4CB0E
Bu I don't want all visited links to be #C4CB0E
For example I want:
visited Link1 to be: #C4CB0E
visited Link2 to be: #FFFFFF
How do I make that possible with CSS?? 
|
Suppose it depends how much there is ya want to change from the default css, but you may want to add additional options in your css for extra link styles eg
.linkstyle1 a, .linkstyle1 a:link, .linkstyle1 a:visited { color: #000099; }
.linkstyle1 a:hover { color: #000000; }
(adjust colors to whatever)
and span them on the acutal page.