View Single Post
  #11  
Old 10-26-2008, 11:29 PM
  Victor D's Avatar 
Victor D Victor D is offline
 

X-Adept
  
Join Date: Aug 2008
Posts: 643
 

Default Re: When Root Cat clicked display sub cat?

try to change
HTML Code:
{foreach from=$altcategories item=v} <tr> <td valign="top" style="padding-left:15px;"><img src="{$ImagesDir}/category_bullet.gif" width="10" height="13" alt="" /></td> <td><a href="home.php?cat={$v.categoryid}" class="VertMenuItems"><font class="CategoriesList" style="font-size:10px;">{$v.category}</font></a></td> </tr> {/foreach}

to
HTML Code:
{foreach from=$altcategories item=v} <tr> <td valign="top" style="padding-left:15px;"><img src="{$ImagesDir}/category_bullet.gif" width="10" height="13" alt="" /></td> <td>{if $v.categoryid ne $current_category.categoryid }<a href="home.php?cat={$v.categoryid}" class="VertMenuItems"><font class="CategoriesList" style="font-size:10px;">{$v.category}</font></a>{else} <font class="myactivecategory">$v.category</font> {/if}</td> </tr> {/foreach}

And put myactivecategory class description in skin1.css
__________________
Regards,
Victor Dubiniuk

X-Cart Skins Store
- twenty two different skins for 4.1.x and 4.2.x;
- 4.3.x compatible versions are available;
- refresh you store now!

Smart menu X-Cart add-on for 4.1.8 - 4.3.x
Featured Products Slide Show X-Cart add-on for 4.1.8 - 4.3.x
Reply With Quote