Ich wollte, das wenn man mit der Maus über ein Link geht, das der Link Dunkelblau ( Navy ) eingefärbt wird.
Das funzt auch alles schon wunderbar. Aber die Links wo man einmal drauf geklickt HATT färben sich dann nicht mehr ein :(.
<style type="text/css">
<!--
a:active { text-decoration: none; color: navy}
a:hover { text-decoration: none; color: navy}
a:link { text-decoration: none; color: white}
a:visited { text-decoration: none; color: white}
-->
</style>
Probiere 'mal folgende Reihenfolge
a:visited { text-decoration: none; color: white}
a:link { text-decoration: none; color: white}
a:hover { text-decoration: none; color: navy}
a:active { text-decoration: none; color: navy}
Grüße
gaby