I know you can change colors in "Options," but this also changes the colors
of the entire site. I just want to change the colors of the links.
Thanks,
Karl
--
Hope This Helped and MTFBWY...
Kieren aka JediFans - <URL:http://jedifans.com/>
The Force Is With Me, SUSE Linux 10.0, Mozilla Firefox 1.5 RC2,
Mozilla Thunderbird 1.5 RC1 and Revenge Of The Sith!
It can be done without an extension. Just paste the following code into
your userContent.css file. Be sure to backup any files before altering
them, in case you make a mistake.
/* The color is a six-digit hexadecimal number specifying the
amount of red, green and blue, in the range of 00 to FF each.
The format of the color specifier is: #rrggbb
Some popular colors are:
#000000 black #0000FF blue #00EEEE cyan
#EEEE00 yellow #FF0000 red #00CC00 green
#FF66FF pink #990099 purple #FFAA00 orange
#FFFFFF white #AAAAAA gray #885500 brown */
/* Force link color to be blue */
a[href] {
color: #0000EE ! important;
}
/* Force visited link color to be purple */
a[href]:visited {
color: #990099 ! important;
}
/* Force javascript link color to be green */
a[href^="javascript:"] {
color: #00AA00 ! important;
}
--
FoxWolfie