menu template structure
Posted: Thu Feb 15, 2007 9:56 am
hi all
i've a problem with menu templateing. i shoud have a template whitch creates the following html structure.
could some one please tell me how to do this? or does some one make a template for me?
thx a lot
peak
i've a problem with menu templateing. i shoud have a template whitch creates the following html structure.
Code: Select all
<div id="menu">
<ul>
<li><a href="/">Home</a></li>
</ul>
<ul>
<li><a href="http://mypage.com/index.php?page=item1">Item 1</a></li>
</ul>
<ul>
<li><a href="http://mypage.com/index.php?page=item1">Item 2</a>
<ul>
<li><a href="http://mypage.com/index.php?php=subitem1">SubItem 2.1</a></li>
<li><a href="http://mypage.com/index.php?php=subitem2">SubItem 2.2</a></li>
<li><a href="http://mypage.com/index.php?php=subitem3">SubItem 2.3</a>
<ul>
<li><a href="http://mypage.com/index.php?page=subchild1">SubChild 2.3.1</a></li>
<li><a href="http://mypage.com/index.php?page=subchild2">SubChild 2.3.2</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
thx a lot
peak