I am working on a page and doing some basic CSS on it.
I have a set of links in a color table so letting the tables do the default BLUE wont due. I want the links to looks white, and hover them to yellow.
I got this to work for the most part. However the links on the blue back ground I want to display as white and hover yellow just dont work.
Heres what I have in my .css file:
A:link {
color: Blue;
text-decoration : underline;
}
A:active {
color: Black;
}
A:visited {
color: Blue;
}
A:hover {
color: #FF0000;
text-decoration: none;
}
A.BART:link {
color: White;
text-decoration : none;
font-family : Arial, Helvetica, sans-serif;
font : bold;
font-size : larger;
}
A.BART:active {
color: Black;
}
A.BART:visited {
color: Blue;
}
A.BART:hover {
color: YELLOW;
text-decoration: none;
}
And for the links I want to display the BART class I have:
<a href="link.htm" class="BART">Link 4</a>
But the link font continues to come up BLUE, and not in the FONT selected. Any suggestions?
I have a set of links in a color table so letting the tables do the default BLUE wont due. I want the links to looks white, and hover them to yellow.
I got this to work for the most part. However the links on the blue back ground I want to display as white and hover yellow just dont work.
Heres what I have in my .css file:
A:link {
color: Blue;
text-decoration : underline;
}
A:active {
color: Black;
}
A:visited {
color: Blue;
}
A:hover {
color: #FF0000;
text-decoration: none;
}
A.BART:link {
color: White;
text-decoration : none;
font-family : Arial, Helvetica, sans-serif;
font : bold;
font-size : larger;
}
A.BART:active {
color: Black;
}
A.BART:visited {
color: Blue;
}
A.BART:hover {
color: YELLOW;
text-decoration: none;
}
And for the links I want to display the BART class I have:
<a href="link.htm" class="BART">Link 4</a>
But the link font continues to come up BLUE, and not in the FONT selected. Any suggestions?