Når jeg har mouseover mine forskellige <li>, - så bliver mine <li> der ligger inde i den inderste <ul> bare vist vandret, og ikke som en traditionel 'dropdown'.
#menu {
background: rgb(0,0,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(8,5,33,1) 22%, rgba(9,23,51,1) 43%, rgba(48,54,89,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(22%,rgba(8,5,33,1)), color-stop(43%,rgba(9,23,51,1)), color-stop(100%,rgba(48,54,89,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(8,5,33,1) 22%,rgba(9,23,51,1) 43%,rgba(48,54,89,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(8,5,33,1) 22%,rgba(9,23,51,1) 43%,rgba(48,54,89,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(8,5,33,1) 22%,rgba(9,23,51,1) 43%,rgba(48,54,89,1) 100%); /* IE10+ */
background: linear-gradient(top, rgba(0,0,0,1) 0%,rgba(8,5,33,1) 22%,rgba(9,23,51,1) 43%,rgba(48,54,89,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#303659',GradientType=0 ); /* IE6-9 */
float: left;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
-moz-border-radius: 25px;
border-radius: 25px;
}
#menu li {
float: left;
font: 87.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
#menu a {
-moz-border-radius: 25px;
border-radius: 25px;
background: #333 url("images/seperator.gif") bottom right no-repeat;
color: #ccc;
display: block;
float: left;
margin: 0;
padding: 8px 12px;
text-decoration: none;
font-weight:normal;
}
#menu a:hover {
background: bottom center no-repeat;
padding-bottom: 8px;
}
#menu li ul {
display: none;
}
#menu li:hover ul {
display: block;
width: 10em; /* Width to help Opera out */
background-color: #69f;
}