
Originally Posted by
Ingham QLD
Sorry, I didn't communicate adequately.
I have the links I need for the subcategories. However, I am wanting to place them on the next sublevel of the menu. Am I supposed to change this line of code (<ul class="level2">) to something else?
My advice is, not to get the LINKS you need for subcategories, but to get the LAYOUT of how subcategories work, and what code you need for them. My site has quite a few subcategories, and even subcategories within subcategories, so that you can see the format required. For example:
Code:
<li class="submenu"><a href="index.php?main_page=site_map">Categories</a>
<ul class="level2">
<li> <a href="index.php?main_page=index&cPath=1">FREE Zen Cart Templates</a></li>
<li class="submenu"> <a href="index.php?main_page=index&cPath=2">Testing 2</a>
<ul class="level3">
<li class="submenu"> <a href="index.php?main_page=index&cPath=2_3">Testing Subcategory</a>
<ul class="level4">
<li> <a href="index.php?main_page=index&cPath=2_3_14">Sub Sub</a></li>
</ul>
</li>
</ul>
</li>
<li> <a href="index.php?main_page=index&cPath=16">Testing Category 3</a></li>
<li class="submenu"> <a href="index.php?main_page=index&cPath=17">Testing Category 4</a>
<ul class="level3">
<li class="submenu"> <a href="index.php?main_page=index&cPath=17_18">Level 2</a>
<ul class="level4">
<li class="submenu"> <a href="index.php?main_page=index&cPath=17_18_20">Level 3</a>
<ul class="level5">
<li class="submenu"> <a href="index.php?main_page=index&cPath=17_18_20_21">Level 4</a>
<ul class="level5">
<li class="submenu"> <a href="index.php?main_page=index&cPath=17_18_20_21_22">Level 5</a>
<ul class="level6">
<li class="submenu"> <a href="index.php?main_page=index&cPath=17_18_20_21_22_23">Level 6</a>
<ul class="level7">
<li> <a href="index.php?main_page=index&cPath=17_18_20_21_22_23_24">Level 7</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
Bookmarks