Standard Desktop Left Navigation Template


/ Published in: HTML
Save to your folder(s)

* A standard multi-level list example for copy and paste in any site. Uses anchors as the default links, to be filled in later.
* Built to work with Bootstrap's default CSS, but also works fine with other CSS
* Pull the "plain" class from the [starter styles](http://snipplr.com/view/72046/universal-mostused-starter-styles/)


Copy this code and paste it in your HTML
  1. <ul class="nav nav-list">
  2. <li><a href="#">Main Item</a></li>
  3. <li><a href="#">Main Item</a></li>
  4. <li class="active">
  5. <a href="#">Active Main Item</a>
  6. <ul class="plain">
  7. <li><a href="#">Sub Item</a></li>
  8. <li><a href="#">Sub Item</a></li>
  9. <li><a href="#">Sub Item</a></li>
  10. </ul>
  11. </li>
  12. <li><a href="#">Main Item</a></li>
  13. <li><a href="#">Main Item</a></li>
  14. </ul>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.