Hallo,
das horizontale Aufklappmenü klappt auch unter Wordpress wunderbar. Jetzt möchte ich aber gerne, dass die jeweiligen Unterseiten des Menüpunktes X aufgeklappt (stehen) bleiben, wenn eine Unterseite aus X ausgewählt worden ist. Kann mir jemand verraten, wie das geht?
Hier ein CSS-Auszug:
#nav li ul {
position: absolute;
z-index: 10;
left: -999em;
height: 85px;
width: 174px;
top: 10px;
}
#nav li li {
width: 172px;
}
#nav li li a, #nav li li a:visited {
font-weight:normal;
font-size: 1em;
border-bottom-width: thin;
border-bottom-style: dotted;
border-bottom-color: #999999;
}
#nav li li a:hover, #nav li li a:active {
color:#BB0000;
border-bottom-width: thin;
border-bottom-style: dotted;
border-bottom-color: #000000;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
left: auto;
}