Hallo,
hab eine Navigationsmenü mit hover-Effekt gebastelt bei dem der aktive Link mit active angezeigt werden soll. t auch ganz gut, nur wenn die Seite geladen wird sind alle Links gleichfarbig. Habt ihr einen Tipp? Evtl. auch PHP?
Vielen Dank und viele Grüße,
Daniel
hab eine Navigationsmenü mit hover-Effekt gebastelt bei dem der aktive Link mit active angezeigt werden soll. t auch ganz gut, nur wenn die Seite geladen wird sind alle Links gleichfarbig. Habt ihr einen Tipp? Evtl. auch PHP?
Vielen Dank und viele Grüße,
Daniel
Code:
#rollovermenu a
{
font-family: "Arial";
font-size: 14px;
font-weight: normal;
display: block;
text-decoration: none;
background-position: left center;
margin-left: 20px;
vertical-align: middle;
height: 21px;
width: 140px;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: left;
text-indent: 35px;
}
#rollovermenu #aktuelles a
{ background: url("anchor.png") no-repeat;
color: #c1b59b;}
#rollovermenu #aktuelles a.link
{ background: url("anchor.png") no-repeat;
color: #c1b59b;}
#rollovermenu #aktuelles a:visited{
background:url("anchor.png") no-repeat;
color: #c1b59b;}
#rollovermenu #aktuelles a:hover{
background:url("anchor_red.png") no-repeat;
color: #ff0000;}
#rollovermenu #aktuelles a:active{
background:url("anchor_red.png") no-repeat;
color: #ff0000;}
#rollovermenu #aktuelles a:focus{
background:url("anchor_red.png") no-repeat;
color: #ff0000;}