Hi all,

I have just started to have a look at Drupal after spending a couple of weeks with Joomla and getting fed up with all the extra files/code and limited responses in the forums.

Anyhow I have been having a quick play and would like to know if you can make nested list menus in the format

  • link
  • link
    • second level list

Note: that the first level

  • with a submenu wraps around the
      .

      I just did a quick test and got the following output which is not really good for my cause as the

    • gets closed off before the submenu starts.

      Thank you.

  • Comments

    Charlie99’s picture

    Oops - let me try that again...

    Hi all,

    I have just started to have a look at Drupal after spending a couple of weeks with Joomla and getting fed up with all the extra files/code and limited responses in the forums.

    Anyhow I have been having a quick play and would like to know if you can make nested list menus in the format

    <ul>
    <li>link</li>
    <li>link
    <ul>
    <li>second level list</li>
    </ul>
    </li>
    </ul>
    

    Note: that the first level

    <li>with a submenu wraps around the
    <ul>.

    I just did a quick test and got the following output which is not really good for my cause as the

    list item gets closed off before the submenu starts.

    <ul class="links primary-links">
    <li class="first menu-1-1-2"><a href="/" title="Home" class="menu-1-1-2" rel="nofollow">Home</a></li>
    <li class="menu-1-2-2"><a href="/" title="Home" class="menu-1-2-2" rel="nofollow">Home</a></li>
    <li class="last menu-1-3-2-active"><a href="/node/2" title="Clients" class="menu-1-3-2-active active" rel="nofollow">Clients</a></li>
    </ul>
    
    <ul class="links secondary-links">
    <li class="first last menu-2-1-48"><a href="/node/3" title="Client Test" class="menu-2-1-48" rel="nofollow">Client Test</a></li>
    </ul>
    

    Thank you.