• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Hyperlinks färben?

Status
Für weitere Antworten geschlossen.

Darthshoot

Neues Mitglied
Hallo!

Ich will Hyperlinks in Blau färben und ohne Unterstreichung.
Die CSS Datei funktioniert, aber nur der Teil, wo die Hyperlinks bearbeitet werden funktioniert nicht.

Code:
a:link {text-decoration: none; text-color: #6699CC;}
a:visited {text-decoration: none; text-color: #6699CC;}
a:active {text-decoration: none; text-color: #6699CC;}
a:hover {text-decoration: none;}

Wo ist der Fehler?
Danke im Voraus.
MfG Darthshoot
 
brauchst nur die hover- und normalversion:

Code:
a { text-decoration:none; color:#6699CC; }
a:hover { text-decoration:none; color:#6699CC; }

das reicht schon, jetzt müsste das eigentlich gehen.

Nils aka XraYSoLo
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben