Page 1 of 1

Help with Menu Template

Posted: Fri Jul 20, 2007 3:33 pm
by DrTsus
I've looked through the Wiki and I can't find one to match what I'm trying to do, so I need to create a template. My layout is setup to have this...

Code: Select all

<h1>Unlinked Header</h1>
<ul>
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
</ul>
<h1>Unlinked Header</h1>
<ul>
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
</ul>
and on the Link One page, have it's children listed under the content, but NOT on the menu itself.

Code: Select all

<ul class="sub">
<li><a href="#">Link One-A</a></li>
<li><a href="#">Link One-B</a></li>
</ul>
How would I create a template for something like this? Would there be a code for putting the sub menu on Link One's page itself?