I have a webpage that has a dark-coloured bottom panel where I have auxillery links located. Thus they have to be white to see. But I also have a couple links in the body part of the page, placed against a lighter background. White doesn't show up here well so <body bgcolor="white" link="white" vlink="white" alink="white"> won't work.
from google searces, I found this:
which works well on rollover, but it still doesn't help change individual link colors. I want to keep the bottom links white, but the body ones a darker shade. Any way to do this?
from google searces, I found this:
<STYLE TYPE="text/css">
<!--
a{color:"blue";}
a:hover{
background-color:#000000;
color:"white";
}
</STYLE>
which works well on rollover, but it still doesn't help change individual link colors. I want to keep the bottom links white, but the body ones a darker shade. Any way to do this?