#horizontal-multilevel-menu,#horizontal-multilevel-menu ul
{
margin:0; padding:0;
background:#FAFAFA url(images/header_menu_bg.gif) repeat-x;
min-height:35px;
list-style:none;
font-size:11px;
/*float:left;*/
box-sizing:border-box;
-moz-box-sizing:border-box;
height:35px;
/* добавляем вот эти строки */
position: absolute;
bottom:35px;
width:500px;
}
т.е. что сделать закоментировать float:left, добавить position: absolute; и bottom:35px; , где 35px - высота меню, также изменить ширину по умолчанию width:100%; а нужно выставить ширину меню.
|