Log in

View Full Version : jQuery Multi Level CSS Menu #2 Space on Right



rtrinidad
03-11-2009, 03:56 PM
Script: jQuery Multi Level CSS Menu #2
http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/P10/


I'm having an isssue with the height of the remaining space to the right of the menu.

If I insert the menu inside a <div> with a set height, the height of the space to the right of the menu is reduced to some random height.

The following displays the space to the right correctly:

<div>
<div id="myslidemenu" class="jqueryslidemenu">
<ul>
<li><a href="#">Item</a></li>
<li><a href="#">Folder</a>
<ul>
<li><a href="#">Sub Item 1</a></li>
<li><a href="#">Sub Item 2</a></li>
</ul>
</li></ul>
</div>
</div>

The following displays the space to the right as a thin line:

<div style="height:600px">
<div id="myslidemenu" class="jqueryslidemenu">
<ul>
<li><a href="#">Item</a></li>
<li><a href="#">Folder</a>
<ul>
<li><a href="#">Sub Item 1</a></li>
<li><a href="#">Sub Item 2</a></li>
</ul>
</li></ul>
</div>
</div>

Any idea why?

Snookerman
03-11-2009, 04:05 PM
Warning: Please include a link to the DD script in question in your post. See this thread (http://www.dynamicdrive.com/forums/showthread.php?t=6) for the proper posting format when asking a question.
Please post a link to the page on your site that contains the problematic script or attach your code so we can check it out and help you.