Jump to content
  • 0

Проблема с выпадающим меню


rostex
 Share

Question

Как то странно получилось, но меню сломалось само по себе. И пришлось переделывать все. Порыскав нашел то что нужно и вставил выпадающее меню себе на сайт. Но вышла следующая проблема.

menu.jpg

Меню уходит в никуда. Я уже все варианты перепробывал, которые вычитал и толку нет ни какого.

Вот CSS стиль меню:

#mainmenu
{
background: url("images/menu.png") no-repeat scroll 0 0 transparent;
display: block;
height: 61px;
overflow: hidden;
}
#mainmenu .current-cat a
{
background: url("images/tab.png") repeat-x scroll 0 0 transparent;
}
#mainmenu ul
{
margin: 5px 0 0 12px;
padding: 0;
list-style: none;
}

#mainmenu ul li
{
position: relative;
float:left;
}

#mainmenu ul li ul, #mainmenu ul li ul li
{
width:130px;
}

#mainmenu li ul
{
position: absolute;
left: 0;
top: 30px;
display: none;
float:left;
}

#mainmenu ul li a
{
float:left;
color: #FFFFFF;
height: 40px;
margin-top: 0;
font-size:12px;
padding: 20px 12px 20px 12px;
text-align:center;
line-height: 8px
}

#mainmenu li ul li a
{
padding:5px 0 3px 10px;
text-align:left;
font-size:12px;
width:120px;
background: #EEEEEE;
}
#mainmenu li ul li a:hover
{
background: #152C36;
color:White;
}
* html #mainmenu ul li {
float: left;
height: 1%;
}
* html #mainmenu ul li a {
height: 1%;
}
#mainmenu li:hover ul, #mainmenu li.over ul {
display: block;
}

Тут собственно как представлено в коде страницы:

<div class="outer">
<div id="mainmenu">
<?php
if(function_exists('wp_nav_menu')) {
wp_nav_menu( 'theme_location=menu_2&menu_id=nav&outer-wrapper=&fallback_cb=menu_2_default');
} else {
menu_2_default();
}

function menu_2_default()
{
?>
<ul id="nav">
<li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Главная</a></li>
<li><a href="http://forum.polygon4.net/forumdisplay.php?f=117">Форум</a></li>
<li><a>Сервер Minecraft</a>
<ul>
<li><a href="http://mc.polygon4.net/server-rules">Правила сервера</a></li>
<li><a href="http://mc.polygon4.net/first-enter">Первый вход</a></li>
<li><a href="http://polygon4.net:8123/">Карта сервера</a></li>
</ul>
</li>

<li><a>Полезное</a>
<ul>
<li><a href="http://mc.polygon4.net/commands-list">Команды сервера</a></li>
<li><a href="http://mc.polygon4.net/id-blocks">ID Блоков</a></li>
<li><a href="http://mc.polygon4.net/region-protection">Защита регионов</a></li>
<li><a href="http://mc.polygon4.net/chest-shop">Установка магазинов</a></li>
</ul>
</li>
</ul>
<?php
}
?>
</div>
</div>

Помогите разобраться в чем дело...

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy