Hi All,
Just finished chatting with support and the only answer he could give me was "this is beyond the range of tech support" so I thought I would ask here. Has anyone figured out how to create a submenu under a subcategory on the left nav -without hard coding? So -- Mens > Shirts > T-Shirts? Right now, if you do something like this, you can click Mens and it will release the next level of navigation - Shirts, underneath. But when you click Shirts it doesn't go to the next level.
This is what we have:
<ul id="navlist">
<!--START: CATEGORIES-->
<!--START: CATEGORY_FORMAT-->
<li><a href="../view_category.asp?cat=CATID">CATEGORY</a></li>
<!--END: CATEGORY_FORMAT-->
<!--START: SUB_CATEGORY_FORMAT-->
<ul id="subnavlist">
<li><a href="../view_category.asp?cat=CATID">CATEGORY</a></li>
</ul>
<!--END: SUB_CATEGORY_FORMAT-->
<!--END: CATEGORIES-->
</ul>
How do you modify it to add in the next subcategory?
Thanks!
Just finished chatting with support and the only answer he could give me was "this is beyond the range of tech support" so I thought I would ask here. Has anyone figured out how to create a submenu under a subcategory on the left nav -without hard coding? So -- Mens > Shirts > T-Shirts? Right now, if you do something like this, you can click Mens and it will release the next level of navigation - Shirts, underneath. But when you click Shirts it doesn't go to the next level.
This is what we have:
<ul id="navlist">
<!--START: CATEGORIES-->
<!--START: CATEGORY_FORMAT-->
<li><a href="../view_category.asp?cat=CATID">CATEGORY</a></li>
<!--END: CATEGORY_FORMAT-->
<!--START: SUB_CATEGORY_FORMAT-->
<ul id="subnavlist">
<li><a href="../view_category.asp?cat=CATID">CATEGORY</a></li>
</ul>
<!--END: SUB_CATEGORY_FORMAT-->
<!--END: CATEGORIES-->
</ul>
How do you modify it to add in the next subcategory?
Thanks!
Comment