I'm trying to get a subsub menu in this already created horizontal menu I have but am having no luck on doing so. I want the subsub menu to hover over to the right of the submenu portion when someone hovers over it and then hide when there is no hover over the submenu item.
Also is it possible to get another subsubsub menu to those subsub menu items?
I'm having a hard time doing this. Here are the codes I have so far:
http://jsfiddle.net/ndn4life104/pp5Mf/
HTML
<ul> <li><a href="#">Menu 1</a> <div class="primary-nav-sub-menu-2"> <ul class="column">
<li><a href="#">Submenu</a></li>
<li><a href="#">part1</a></li>
<li><a href="#">part2</a></li>
<li><a href="#">part3</a></li>
<li><a href="#">part4</a></li>
</ul>
<ul class="column">
<li><a href="#">part5</a></li>
<li><a href="#">part6</a></li>
<li><a href="#">part7</a></li>
<li><a href="#">part8</a></li>
</ul></div> </li></ul>
FIDDLE
try this:
HTML:
CSS:
just understand the logic behind this code and you can made as much submenus as you want.