Sidebar Navigation
Screenshot

One Level
<ul class="ol-side-navigation">
<li>
<a href="#">level 1</a>
</li>
<li class="current-menu-item">
<a href="#">level 1</a>
</li>
...
</ul>Notes
add
.ol-side-navigationto a simple list with anchor linksone
<li>item can be the current menu item which recieves.current-menu-itemclass
Adding Second level
<li class="menu-item-has-children">
<a href="#">level 1</a>
<ul class="sub-menu">
<li><a href="#">level 2</a></li>
<li><a href="#">level 2</a></li>
<li><a href="#">level 2</a></li>
</ul>
</li>Notes
add
.menu-item-has-childrenclass to the<li>add a
<ul>with.sub-menuclassThe submenu who contains the
.current-menu-itemwill recieve.current-menu-parent
Adding Third level
Adding 3'rd levele menu is just like the second menu
Toggle
It is represented by .toggle-free class added to .ol-side-navigation
Skins
Default : Theme color
Red :
.red-skinclassGreen :
.green-skinclassCyan :
.cyan-skinclassYellow :
.yellow-skinclassDark :
.dark-skinclassBlue :
.blue-skinclass
Last updated