Hallo...
Mein Clan hat sich ein Design von ilch.de heruntergeladen und ich habe ein Problem bei der HTML bzw. CSS-Programmierung:
Unser Clandesign ist ausschliesslich rot und deshalb möchte ich das alle Links auch rot sind, also schreibe ich in die style.css rein:
a
{
font-family: Verdana, Helvetica, sans-serif, Default;
font-size: 9px;
text-decoration: none;
color: #FF0000;
font-weight: bold;
}
a:link {
font-family: Verdana, Helvetica, sans-serif, Default;
font-size: 9px;
text-decoration: none;
color: #FF0000;
font-weight: bold;
}
a:visited {
font-family: Verdana, Helvetica, sans-serif, Default;
font-size: 9px;
text-decoration: none;
color: #FF0000; // ok
font-weight: bold;
}
a:hover {
font-family: Verdana, Helvetica, sans-serif, Default;
font-size: 9px;
text-decoration: none;
color: #FF0000;
font-weight: bold;
}
a:active {
font-family: Verdana, Helvetica, sans-serif, Default;
font-size: 9px;
text-decoration: none;
color: #FF0000; // ok
font-weight: bold;
}
a:focus {
font-family: Verdana, Helvetica, sans-serif, Default;
font-size: 9px;
text-decoration: none;
color: #FF0000; // ok
font-weight: bold;
}
Aber irgendwie möchte er es nicht annehmen und die Linkfarbe ist wie beim Standartdesign.
Bitte um Hilfe
gruß QuP