Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: Vertical Menu submenu items not displaying

Home Forums Older releases 0.9.x Vertical Menu submenu items not displaying Re: Vertical Menu submenu items not displaying

#1707
admin
Keymaster

Your menu structure is not valid. The sub UL elements should be enclosed in the parent LI’s (this isn’t the case for “item1” in your sample). It should look like this:

<ul id="main-menu" class="sm sm-vertical sm-clean sm-clean-vertical">
  <li><a href="#">item 1</a>
    <ul>
      <li><a href="#">sub item 1</a></li>
      <li><a href="#">sub item 2</a></li>    
    </ul>
  </li>
  <li><a href="#">item 2</a></li>
  <li><a href="#">item 3</a></li>
  <li><a href="#">item 4</a></li>
</ul>

Cheers!