Hi,
I have the following css (this is just an extract)
==================================================
a
{
font-family: Arial;
color: #00cc00;
text-decoration: none
}
a:hover
{
color: #C0C0C0;
text-decoration: underline
}
.plaina
{
font-family: Verdana;
font-size: 8pt;
font-weight: bold;
color: #6699FF;
text-transform: capitalize;
font-variant: small-caps
}
.plaina a:hover
{
color: #000000;
}
now the idea was that all the links exept those links that have the plaina class added to it and this would have a black link when hovered over.
This isn't working, anyone know what I'm doing wrong?
I have the following css (this is just an extract)
==================================================
a
{
font-family: Arial;
color: #00cc00;
text-decoration: none
}
a:hover
{
color: #C0C0C0;
text-decoration: underline
}
.plaina
{
font-family: Verdana;
font-size: 8pt;
font-weight: bold;
color: #6699FF;
text-transform: capitalize;
font-variant: small-caps
}
.plaina a:hover
{
color: #000000;
}
now the idea was that all the links exept those links that have the plaina class added to it and this would have a black link when hovered over.
This isn't working, anyone know what I'm doing wrong?