Hi,
ich habe ein riesenproblem, der Firefox macht mir ständig um eine Link-Grafik einen roten Active-Border und einen Lila Visited Border rum, obwohl ich bereits border ouf none gestellt habe von IMG und LINK. Hier mal der Code:
<body>
<div id="logo">
<a class="logo_link" href="index.html"><img class="logo_bild" src="grafiken/logo.png" alt="logo" height="26" width="198"/></a>
</div>
</body>
HIER DAS CSS:
body {
background-image:url(../grafiken/background02.png);
background-repeat:repeat;
height:100%;
width:100%;
}
img.logo_bild {border:none;}
a:link img.logo_link {border:none;}
a:hover img.logo_link {border:none;}
a:active img.logo_link {border:none;}
a:visited img.logo_link {border:none;}
#logo {
position:absolute;
heght: 26px;
margin-left:10px;
margin-top: 10px;
width: 198px;
}
Hab bereits die Class entfernt und er machts immer noch! Könnt ihr helfen??
Danke!