doctororange
Member
Posted 1 year ago #
Hi,
I've made a child theme to twentyten, which is working OK so far.
I need a menu that uses nested
<_ul_>s to display child menu elements - the twentyten menu only shows one level and I don't know how to show more.
Please kick me off in the right direction.
Thanks.
Just using HTML? Try this:
<ul>
<li>level 1</li>
<li>level 2</li>
<li>
<ul>
<li>level 3, a</li>
<li>level 3, b</li>
</ul>
</li>
<li>level 4</li>
</ul>
doctororange
Member
Posted 1 year ago #
Thanks, but I would like the menu to be manageable through the admin section and so generated automatically.