[CSS] Typ Css l Style l Hyperlinks

Playa Bunny
Hey
ich melde mich nun auhc mal wieder.
Auf meinem Hof verwende ich einen Stylesheet. Nur leider sind die Links bevor ich sie angeklickt habe blau. wisst ihr wie ich das ändern kann? Also nach dem klicken haben sie die gewünschte farbe aber vorher halt.

hier der code für die links

A:link {COLOR: #738EAC; text-decoration:font-weight:bold;; }
A:visited {COLOR: #738EAC; text-decoration: none; }
A:hover {COLOR: #738EAC; text-decoration: overline underline}
A:active {COLOR: #738EAC; text-decoration: none; }


lg
Lauri
a:link, a:active, a:visited{csscode}
a:hover{csscode}

So müsste dann alles so aussehen, wie du möchtest smile
Playa Bunny
hab ich (siehe oben) .....
Lauri
Aber falsch Augenzwinkern

A:link {COLOR: #738EAC; text-decoration:font-weight:bold;; }
Lass das weg. Oder mach es anders mit text-decoration: none;
font-weight: bold; ist ein eigener Befehl...
Playa Bunny
http://crownhill.cr.funpic.de/home.htm

geht leider noch immer nicht
Lauri
Räum den Stylesheet mal auf, bzw. mach ihn etwas übersichtlicher smile
So kann das nicht funktionieren, da ist doch auch noch überall HTML drin und so, muss alles nicht.

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
BODY {
color: #738EAC;
font-family: Verdana;
font-size: 10px;
text-align : center;
cursor:crosshair
background-attachment: fixed;
background-position:0px 0px;
scrollbar-face-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-shadow-color: #ffffff;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #ffffff;
 }

A:link{COLOR: #738EAC; }
A:visited{COLOR: #738EAC; text-decoration: none; }
A:hover{COLOR: #738EAC; text-decoration: overline underline; cursor:crosshair;}
A:active{COLOR: #738EAC; text-decoration: none; }
Playa Bunny
danke smile