Hier ein Beispiel zu meinem Problem:
body { color: black; background-color: white; }
a:link, a:visited, a:active { color: blue; text-decoration: none; }
a:hover {
color: #844242;
text-decoration: none;
border-width: 0px 0px 1px 0px;
border-style: solid;
border-color: black;
}
/* Mein verzweifelter Versuch den Border loszuwerden */
a img { border: 0px; }
a img:link , a img:visited, a img:active, a img:hover { border: 0px; }
Statusbericht: Link bekommt einen Border beim Hover-Effekt, das Bild auch (!).
Ich hab das ganze auch mit !important versucht, geht aber auch nicht.
Hilfe!



