I'm looking at a css menu which seems to work OK for my requirements apart from I need to create a submenu off one of the existing menus.
https://jsfiddle.net/0e4jafn1/
I've created a fiddle to show what it currently looks like, is there any way to create a submenu from the second option of DropDown 3. ?
I tried tried adding a submenu as follows :
<li><a href="#">DropDown 3</a>
<ul>
<li><a href="#">Option 1</a></li>
<li><a href="#">SUB MENU -></a></li>
<ul>
<li><a href="#">Option 3</a></li>
<li><a href="#">Option 4</a></li>
</ul>
</ul>
</li>
This displays the new options, but they are position incorrectly and always visible.
Could some one advise the best way to do this.
Thanks