Hintergrund Problem

Status
Nicht offen für weitere Antworten.

VCF

Mitglied
Hallo. Hab hier mal nen css gefunden, der eigentlich die Farbe des Links und dessen Hintergrundfarbe wechseln sollte. Das tut er aber nicht.

Code:
<style type="text/css">
<!--
A:link {text-decoration: none; color: #cccccc;
font-family: verdana; font-size: 10pt; }
A:visited {text-decoration: none; color: #cccccc;
font-family: Verdana; font-size: 10pt; }
A:hover {text-decoration: underline; color: #ffffff;
font-family: Verdana; font-size: 10pt; }
A:active { color: #cccccc;
font-family: Verdana; font-size: 10pt; }
-->
</style>

Brauche bitte dringend Hilfe !
 
Um die Hintergrundfarbe eines Links zu tauschen, sollte im Stylesheet mit background eine jeweilige Hintergrundfarbe notiert werden ;-]

Code:
a:link, a:visited
{
text-decoration: none; 
color: #cccccc;
font-family: verdana; 
font-size: 10pt; 
background: #ffffff; 
}

a:hover 
{
text-decoration: underline; 
color: #ffffff;
font-family: Verdana; 
font-size: 10pt; 
background: #000000;
}

a:active 
{ 
color: #cccccc;
font-family: Verdana; 
font-size: 10pt; 
background: #000000;
}
 
Status
Nicht offen für weitere Antworten.
Zurück