Results 1 to 5 of 5

Thread: Submenu not hiding

  1. #1
    Join Date
    Sep 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Submenu not hiding

    1) Script Title: All Levels Menu 3.0

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...menu/index.htm

    3) Describe problem: I have the menu working in general but I have one small issue. When I mouse over a secondary submenu (3rd level) it expands to the right but it stays open if I move my mouse over another submenu (2nd level)under the same main menu. If I move my mouse to another main menu it closes properly.

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    I don't see the problem on the demo page
    http://www.dynamicdrive.com/dynamici...menu/index.htm
    do you ?
    If not, it must be something on your page causing the problem, and we would need the see the page to understand what's going wrong. Please post a link to your page.

  3. #3
    Join Date
    Sep 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I agree. The demo works perfectly. It must be something in my list setup but I sure can't see it. The site isn't live yet so I don't have an external link that I can give you but I am attaching a zip file with page and menu files.

    Thanks!

  4. #4
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Ok it looks like a problem with the list. You probably have fixed by now, but in case you don't, here's what's in your file
    Code:
    <ul id="ddsubmenu2" class="ddsubmenustyle">
    <li><a href="#">Call Recording</a></li>
    	<ul>
    	  <li><a href="#">Call Centers</a></li>
    	  <li><a href="#">Public Safety</a></li>
    	  <li><a href="#">Government</a></li>
    	  <li><a href="#">Integrations</a></li>
    	 </ul>
    Move the red</li> down like this
    Code:
    <ul id="ddsubmenu2" class="ddsubmenustyle">
    <li><a href="#">Call Recording</a>
    	<ul>
    	  <li><a href="#">Call Centers</a></li>
    	  <li><a href="#">Public Safety</a></li>
    	  <li><a href="#">Government</a></li>
    	  <li><a href="#">Integrations</a></li>
    	 </ul>
             </li>
    I think it should work then.

  5. #5
    Join Date
    Sep 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yes. That was it. I knew it was something simple. I just couldn't see it.

    Thanks.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •