Fragezeichen: Rollovereffekt bei besuchtem Link funktioniert nicht

Beitrag lesen

Hallo Forum

Ich habe folgendes Probelm:

Bei einem Link soll beim Rollover die Farbe gewechselt werden. Das funktioniert aber nur wenn der Link nicht schon mal besucht wurde. Wenn er einmal angeklickt wurde, wechselt danach beim Rollover die Farbe nicht mehr. Was mache ich falsch?

Hier der Code:

a:link {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-weight: bold;
 text-decoration: none;
 color: #000000;
}
a:hover {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-weight: bold;
 color: #FFFFFF;
 text-decoration: none;
}
a:active {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-weight: bold;
 color: #640000;
 text-decoration: none;
}
a:visited {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-weight: bold;
 color: #000000;
 text-decoration: none;
}

Danke für Eure Antwort!
Fragezeichen