Hey Enrico,
hier ein Beispiel, wie wir unser Menü per CSS aufgebaut haben. Vielleicht hilft Dir das weiter:
#navigation {
background: #000000 url(../img/navigation.jpg) repeat-x;
}
#navigation ul {
display: inline;
margin: 0;
}
#navigation ul li {
float: left;
list-style: none;
position: relative;
white-space: nowrap;
}
#navigation ul li a {
display: block;
}
#navigation ul li a:hover {
}
#navigation ul li ul {
padding: 0;
position: absolute;
}
#navigation ul li ul li {
background: #000000 url(../img/navigation.jpg) repeat-x;
display: block;
float: none;
white-space: nowrap;
}
#navigation ul li > ul {
display: none;
}
#navigation ul li:hover > ul {
display: block;
}
Die Format-Definitionen für Schrift und Rahmen habe ich weitestgehend entfernt.
Gruß, Dennis