View Single Post
  #1  
Old 07-22-2003, 01:18 PM
 
bberline bberline is offline
 

Member
  
Join Date: Jul 2003
Posts: 12
 

Default Menu background image

I have been trying for hours to add a menu background image to the section title "Categories". Is there a simple HTML snippet I can add to make this work properly. I plan on incorporating similar background images to the other sections as well. Any guidance is appreciated!

Here is the current code from categories.tpl x-cart 3.4.3:
Code:
{* $Id: categories.tpl,v 1.18 2003/02/25 08:58:46 olga Exp $ *} {capture name=menu} {if $config.General.root_categories eq "Y"} {section name=cat_num loop=$categories} <font class=CategoriesList>{ $categories[cat_num].category_name|escape }</font> {/section} {else} {section name=cat_num loop=$subcategories} <font class=CategoriesList>{ $subcategories[cat_num].category_name|escape }</font> {/section} {/if} {/capture} {include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_categories menu_content=$smarty.capture.menu }
Reply With Quote