Hi ich habe ein Problem. Ich habe einen Div-Layer in dem 3 Links stehen. Leider geht der erste nicht. Ich benutze den gleichen Div-Layer mehrmals auf meiner Seite (Submenu) und der 1. Link funktioniert nie. Hier mein Quelltext:
<div id="submenu_netzwerk"><a href="index.php?action=link1">Link 1</a> • <a href="index.php?action=link2">Link 2</a> • <a href="index.php?action=link3">Link 3</a></div>
Der CSS-Code sieht so aus:
#submenu_netzwerk{
z-index:4;
position:absolute;
top:125px;
left:66px;
font-family:Arial;
font-size:15px;
color:#333333;
}
#submenu_netzwerk a{
font-family:Arial;
font-size:15px;
color:#999999;
text-decoration:none;
}
#submenu_netzwerk a:hover{
font-family:Arial;
font-size:15px;
color:#cc0033;
text-decoration:none;
}
Hoffe es kann mir einer helfen!Danke.
Ach ja: Das Problem tritt nur im FF auf. Im IE funktioniert es...