Hab auf ner Seite mehrere Links und Anker. Das Aussehen hab ich über ne externe .css Datei festgelegt. Hab aber jetzt das Problem dass die Anker ebenfalls, wie die Links, ein Underline bekommen bzw. ihre Farbe sich in weiß ändert! Wie kann ich denn in CSS meine Anker verändern?
Code
body {font-family: ARIAL; font-size:12px; text-decoration:none; color: #FFFFFF; background-color : #000000}
a {font-size: 12px; font-weight:bold; color:#336699; text-decoration: none}
a:link {font-size: 12px; font-weight:bold; color:#FFFFFF; text-decoration: none}
a:visited {font-size: 12px; font-weight:bold; color:#FFFFFF; text-decoration: none}
a:active {font-size: 12px; font-weight:bold; color:#FFFFFF; text-decoration: none}
a:hover {font-size: 12px; font-weight:bold; color:#FFFFFF; text-decoration: underline}