Добрый день всем, помогите настроить CSS для nice menus (Внизу прикреплен скриншот). Тему верстал сам. Буквы выходят за предел бэкграунда, что в CSS надо прописать? И где можно глянуть ID и классы модуля nice menus, уже запарился искать :))3
Вот сам nice.css:
background:none repeat scroll 0 0 #cd2a21;
margin-left:13em;
margin-top:-15px;
overflow:visible !important;
padding:0;
width:100%;
}
ul.nice-menu ul li {
text-align: left;
overflow: visible !important;
display:block;
}
li.menuparent li, li.menuparent ul {
background:none repeat scroll 0 0 transparent;
}
#menu ul.nice-menu li a:hover {
color: white;
background: #135FCD;
width: 100%;
}
#menu ul.nice-menu li a:link, a:visited {
color: white;
background: none;
text-decoration: none !important;
}
#menu ul.nice-menu li a:active {
color: red !important;
background: black;
}
ul.nice-menu,
ul.nice-menu ul,
ul.nice-menu li {
border: 0;
margin-left:-15px;
}
/*Get rid of the borders and background colour for all top-level menu items:*/
ul.nice-menu,
ul.nice-menu ul,
ul.nice-menu li {
background: none;
line-height: 1.5;
}
ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent {
background: url('images/arrow-right.png') right center no-repeat;
}
li.menuparent li, li.menuparent ul {
background: none;
}
/*Have a nice menu stick right at the top of the page e.g. for an admin menu:*/
#block-nice_menus-1 {
position: absolute;
top: 0;
left: 0;
}
/*In Firefox, as above but where the menu doesn't move as you scroll down the page:*/
#block-nice_menus-1 {
position: fixed;
top: 0;
left: 0;
}
Вложение | Размер |
---|---|
css.JPG | 32.21 КБ |
Комментарии
margin-left:-15px;
подозрительно выглядит.
А в nice_menus-default.css не заглядывали?
Еще 1 вопрос, я делал вывод через primary link, т.е. в page.tpl.php заменял на «
<?php print theme('nice_menu_primary_links');?>
» Воот, как указать nice_menus чтобы оно выпадало вправо? (В Ридми читал, что оно по умолчанию выпадает вправо, но на самом деле, чтобы я ни делал все время как-то криво и вниз) Слышал что-то про переменную $direction, но как ее использовать?Вам же посоветовали заглянуть в nice_menus_default.css.