Results 1 to 2 of 2

Thread: jQuery Multi Level CSS Menu #2 Space on Right

  1. #1
    Join Date
    Mar 2009
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default jQuery Multi Level CSS Menu #2 Space on Right

    Script: jQuery Multi Level CSS Menu #2
    http://www.dynamicdrive.com/style/cs...ss_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:
    Code:
    <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:
    Code:
    <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?
    Last edited by rtrinidad; 03-11-2009 at 04:08 PM.

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Warning: Please include a link to the DD script in question in your post. See this thread 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.

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
  •