Hello,
I need a css vertical multilevel drop down menu with the possibility of infinite levels. My menu is dynamic, in a database table, it would be generated by php/mysql and will be something like this:
<ul>
<li><a href='#'>Level 1.1</a>
<ul>
<li><a href='#'>Level 1.1.1</a></li>
<li><a href='#'>Level 1.1.2</a></li>
</ul>
</li>
<li><a href='#'>Level 1.2</a>
<ul>
<li><a href='#'>Level 1.2.1</a>
<ul>
<li><a href='#'>Level 1.2.1.1</a></li>
<li><a href='#'>Level 1.2.1.2</a></li>
</ul>
</li>
<li><a href='#'>Level 1.2.2</a></li>
</ul>
</li>
</ul>
I need something very simple, easy to set up, with the minimum markup/ccs, no javascript if possible, because I would like to add a jQuery effect to the link (anchor).
I saw this link: http://thinkhtml.blogspot.com/2009/09/timos-float-drop-css-only-dropdown-menu.html
But I do not know
1.- If it will allow infinite sub-levels
2.- And how to convert it to a vertical menu
I appreciate a lot your kind help to adapt this to my needs or to provide a link to a menu with these characteristics, if it is of free use the better.
Best regards
joejac