I'm trying to recreate this type (example 1, example 2) of menu list style, but I need it to be able to handle nested lists and I'm not sure how to do it. does anyone have any insight how I can do this?
ie (w/ minimal markup) :
<ul>
<li>one</li>
<li>two
<ul>
<li>two and half</li>
</ul>
</li>
</ul>
Thanks a bunch!!