Hallo ich habe das CSS bei meiner Webseite www.jans-reptilien.de überarbeitet und nun harkt das Menü (wenn man mit der Maus hoch und runter geht bleibt es immer an den Stellen hängen wo es ausklappt wenn man dann mit der Maus weiter runter geht klaptt es nicht mehr aus) auf der linken Seite ich verstehe aber nicht warum. Ich habe eigentlich an der Stelle nichts gemacht. Im vergleich meine Zweite Seite www.jans-pflanzenwelt.de mit altem CSS geht es sehr gut.
Habe jetzt schon ewig gesucht und alles mögliche versucht aber es geht nicht. Vielleicht kann mir ja jemand helfen.
[CODE]#navmenu
{
height:30px;
top:32px;
position:fixed;
z-index:100;
}
#navmenu ul
{
margin:0;
line-height:28px;
width:250px;
padding:0;
}
#navmenu li
{
list-style:none;
position:relative;
background:#868686;
border:1px #000000 solid;
}
#navmenu li li
{
left:248px;
top:-31px;
}
#navmenu ul li a
{
width: 248px;
height:28px;
display: block;
}
#navmenu ul ul {
position:absolute;
visibility:hidden;
top:30px;
z-index:100;
}
#navmenu, ul li, li li{
margin:0;
padding:0;
}
#navmenu ul li:hover ul {
visibility:visible;
}
#navmenu li:hover {
background-color:#770000;
}
#navmenu ul li:hover ul li a:hover {
background-color:#770000;
}
#navmenu a:hover {
font-weight:bold;
}
.Sub_level
{
position:relative;
z-index:0;
color:#ffffff;
}
.Sub_level:hover
{
background-color:transparent;
z-index:100;
}
.Sub_level ul
{
position:fixed;
width:250px;
background-color:#cddce9;
left:-3000px;
visibility:hidden;
overflow:visible;
}
.Sub_level:hover ul
{
position:fixed;
visibility:visible;
top:0px;
left:0;
height:0;
}
.navweiss
{
font-size:16px;
font-family:Georgia, „Times New Roman“, Times, serif;
text-align:center;
color:#ffffff;
margin:0;
padding:0;
display:block;
text-decoration:none;
}[/CODE]
#navmenu, ul li, li li{
margin:0;
padding:0;
}
#navmenu
{
width:250px;
height:30px;
top:0px;
margin-top:0px;
border-top:2px #2568b4 solid;
position:relative;
z-index:100;
}
#navmenu ul {
line-height:28px;
}
#navmenu li
{
list-style:none;
position:relative;
background:#0c1754;
font-size:14px;
}
#navmenu li h1
{
display: block;
text-decoration:none;
text-align: center;
font-family: Georgia, "Times New Roman", Times, serif;
color:#4d9cdf;
border:1px #2568b4 solid;
}
#navmenu li li
{
list-style:none;
position:relative;
background:#0c1754;
left:248px;
top:-30px;
}
#navmenu ul li a
{
width: 248px;
height:28px;
display: block;
text-decoration:none;
text-align: center;
font-family: Georgia, "Times New Roman", Times, serif;
color:#ffffff;
border:1px #2568b4 solid;
}
#navmenu ul ul {
position:absolute;
visibility:hidden;
top:30px;
}
#navmenu ul li:hover ul {
visibility:visible;
}
#navmenu li:hover {
background-color:#770000;
}
#navmenu ul li:hover ul li a:hover {
background-color:#770000;
}
#navmenu a:hover {
font-weight:bold;
}
.Sub_level
{
position:relative;
z-index:0;
color:#ffffff;
}
.Sub_level:hover
{
background-color:transparent;
z-index:60;
}
.Sub_level ul
{
position:fixed;
width:250px;
background-color:#0c1754;
left:-3000px;
visibility:hidden;
overflow:visible;
}
.Sub_level:hover ul
{
position:fixed;
visibility:visible;
top:0px;
left:0;
height:0;
}
Vielen Dank im Voraus