[CSS] Link Verfärbung

Vanessa-Anne
Heyho liebe GB'ler
Ich mache mir gerade eine HP.
Und wenn ich irgendwo Links habe, sind die lila gefärbt.
Kann mir jemand sagen, wie ich das ändern kann? Wie die automatisch schwarz bleiben?

Danke schonmal im Vorraus.
die Tini
code:
1:
2:
3:
4:
5:
<style type="text/css">
a:link {color: black; text-decoration: none; }
a:visited {color: black; text-decoration: none; }
a:active {color: black; text-decoration: none; }
a:hover {color: black; text-decoration: none; }</style>


In den <head> Teil setzen Augenzwinkern
Also :
code:
1:
2:
3:
4:
5:
6:
<html>
<head>
<title></title>
CODE
</head>
...


Muss aber auf jeder Seite gemacht werden auf der ein Link ist...geht sicherlich auch irgendwie einfacher aber ich machs immer so xD
Vanessa-Anne
kuhl, danke dir für die schnelle Hilfe <3