josh: Links werden fehlerhaft dargestellt

Beitrag lesen

Hallo,

Dadurch, dass du sowohl für a:link, a:active und a:visited als auch für a:hover jeweils eine Formatierung angegeben hast, kann es zu Konflikten kommen, welche nun endgültig angezeigt wird (obwohl ich das mit den mehreren Links unter Fx3 nicht nachvollziehen konnte).

Ersetze mal...

  
a:link {  
color: #4E4D4A;  
text-decoration: none;  
font-weight: bold;  
}  
a:hover {  
color: #FFCC00;  
text-decoration: underline;  
font-weight: bold;  
}  
a:active {  
text-decoration: none;  
color: #4E4D4A;  
font-weight: bold;  
}  
a:visited {  
text-decoration: none;  
color: #4E4D4A;  
font-weight: bold;  
}

...durch...

  
a {  
color: #4E4D4A;  
text-decoration: none;  
font-weight: bold;  
}  
a:hover {  
color: #FFCC00;  
text-decoration: underline;  
}

Gruß