Nieuw lid |
|
Beste, Ik heb een css file met daarin:
.footerText {
font-family:"trebuchet MS";
font-size:12px;
color:#000000;
text-decoration:none;
}
.footerText { font-family:"trebuchet MS"; font-size:12px; color:#000000; text-decoration:none; }
maar ook heb ik de volgende regels:
a:link
a:hover
avisited
Probleem nu:
Als ik in mijn footer een link plaats, neemt hij natuurlijk over wat er in de a:link staat. Dit is NIET de bedoeling.
Ik wil hiervoor een apparte
a:link
a:hover
maken, is er iemand die mij kan vertellen hoe dit te doen?
want binnenin een classe kan je niet zeggen van:
.footerText {
font-family:"trebuchet MS";
font-size:12px;
color:#000000;
text-decoration:none;
a:link:#FFFFFF;
a:hover:#FFCC00;
}
.footerText { font-family:"trebuchet MS"; font-size:12px; color:#000000; text-decoration:none; a:link:#FFFFFF; a:hover:#FFCC00; }
|