Submenus

Create submenus by simply putting another UL in the LI:

<nav id="my-menu">
   <ul>
      <li><a href="/">Home</a></li>
      <li>
         <a href="/about/">About us</a>
         <ul>
            <li><a href="/about/history/">History</a></li>
            <li><a href="/about/team/">The team</a></li>
            <li><a href="/about/address/">Our address</a></li>
         </ul>
      </li>
   </ul>
</nav>

You don't need to worry about any open-/close-links, the plugin adds them for you.


Next up: Labels »