
Originally Posted by
airtime
Could you give me a coding example of how I could put a Cateory next to the information box? I took a look at includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php but it is still beyond me.
thanks,
Airtime
Just do it with regular 'ole html, mimicking the category HTML that is produced by viewing the source of your site, something like this:
Code:
<li class="submenu"><a href="index.php?main_page=index&cPath=1">Main Category Name</a>
<ul class="level2">
<li><a href="index.php?main_page=index&cPath=2">Subcategory A</a></li>
<li class="submenu"><a href="index.php?main_page=index&cPath=3">SubCategory B</a>
<ul class="level3">
<li class="submenu"> <a href="index.php?main_page=index&cPath=4">Sub Sub Category of B</a>
<ul class="level4">
<li> <a href="index.php?main_page=index&cPath=5">Sub Sub Sub Category of B</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
Bookmarks