S
starfoxfs
Hi zusammen,
Ich habe auf einem Bild ein Div Layer der mir bei on Hover und Active ein Hintergrundbild anzeigt sozusagen als Effekt.
Nun das Problem das Hintergrundbild von a:active , a:focus wird mir nun aber auch auf den normalen links angezeigt wenn sie active sind.
Ich habe auf einem Bild ein Div Layer der mir bei on Hover und Active ein Hintergrundbild anzeigt sozusagen als Effekt.
Nun das Problem das Hintergrundbild von a:active , a:focus wird mir nun aber auch auf den normalen links angezeigt wenn sie active sind.
HTML:
.sidebar a {
display: block;
width: 110px;
height: 90px;
margin-top: 15px;
}
.sidebar a:active, a:focus {
display: block;
width: 110px;
height: 90px;
margin-top: 15px;
background: url(../images/sidebaractive.png);
}
.sidebar a:hover {
display: block;
width: 110px;
height: 90px;
margin-top: 15px;
background: url(../images/sidebarhover.png);
}