
Originally Posted by
threddies.com
If I use the structure that is provided and just plug my info in, everything looks and works correctly. No problem.
If I try to add in a sublevel under a sublevel, all I get is plain text. It does not display as a link, and the text itself does not pop out of the 1st sublevel - it displays layered on top of it.
I appreciate your help!
No, you're not giving them the correct styles. View the source of the site to see the styles that are applied within the drop down menu.
It should be like this:
HTML Code:
<li class="submenu"><a href="link.htm">MAIN DROP DOWN</a>
<ul class="level2">
<li class="submenu"> <a href="link.htm">First Under Drop Down</a>
<ul class="level3">
<li class="submenu"> <a href="link.htm">Sub under First Drop Down</a>
<ul class="level4">
<li> <a href="link.htm">Sub Sub Under First Drop Down</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
Bookmarks