Jump to content

Drop down menu disappearing


imperialized

Recommended Posts

Ok, Im having a little problem. I fixed the menu shifting, but now the menu disappears before it is supposed to. I am really not sure even how to tackle this, any help would be appreciated it.

 

Link: http://www.imperialized.com/new/index.php  -- Hover over the top menu link Dropdown.

 

The menu comes as it should, but as you work down the menu it will disappear even though your mouse is still hovered.

 

my CSS for the menu:

 

/** Navigation **/

#navigation {
    margin-left: 20px;
    margin-top: 40px;
    float: left;
}

#navigation ul{
    list-style: none;
    margin-left: 20px;
    }
    
#navigation li{
    display: inline-block;
    text-align: center;
    margin: 0 2px 0 2px;
    width: 125px;
    height: 30px;
    border-radius: 5px;
    vertical-align: middle;
    background: #27343C;
}

#navigation li a.active{
    background: #FC4F83;
}

#navigation a{
    color: #FFFFFF;
    font: bold;
    text-decoration: none;
}

#navigation a:hover{
    text-decoration: underline;
}

#navigation li ul{
    position: absolute;
    display: none;
}

#navigation li:hover > ul {
display: block;
}

/* SUB MENU CSS BELOW */

#navigation li ul li{
    display: block;
    margin-top: -1px;
    padding: 3px;
    width: 100px;
    height: 20px;
    font-size: 10pt;
    border-radius: 0px;
    border-left: 1px solid #6699dd;
    border-right: 1px solid #6699dd;
}
#navigation li ul li:first-child{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #6699dd;
    display: block;
    height: 5px;
    border: 0;
    width: 101.5px;
}

#navigation li ul li:first-child:hover, #navigation li ul li:last-child:hover{
    background: #6699dd;
}

#navigation li ul li:last-child{
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background: #6699dd;
    display: block;
    height: 5px;
    border: 0;
    width: 101.5px;
}


#navigation li ul li a{
    text-decoration: none;
}

#navigation li ul li a:hover{
    text-decoration: underline;
}

#navigation li ul li:hover{
    background: #FC4F83;
}

 

 

The navigation menu code:

print "<ul>
        <li class='active'><a href='#'>Home</a></li>
        <li><a href='#'>Profile</a></li>
        <li><a href=#>Dropdown</a>
        <ul>
        <li> </li>
        <li><a href=#>Sub Menu</a></li>
        <li><a href=#>Sub Menu</a></li>
        <li><a href=#>Sub Menu</a></li>
        <li><a href=#>Sub Menu</a></li>
        <li><a href=#>Sub Menu</a></li>
        <li> </li>
        </ul></li>
        ";

 

Any help with this would be greatly appreciated!! Thanks in advance.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.