View Single Post
  #1  
Old 11-04-2003, 04:01 AM
 
cipi cipi is offline
 

Member
  
Join Date: Oct 2003
Posts: 16
 

Default Best way to edit templates

Hello,

I whant to modify the height of the <td> that contains the Headers of a table. For example "Categories" , "Bestsellers".

I want to change from:

Code:
<TABLE border=0 cellPadding=5 cellSpacing=0 width="100%"> <TR> <TD class=VertMenuTitle width=26 height=26>[img]{$ImagesDir}/dingbats_categorie.gif[/img]</TD> <TD valign=center width="80%" height=26 class=VertMenuTitle><FONT class=VertMenuTitle>{$lng.lbl_special}</FONT></TD>

to:
Code:
<TABLE border=0 cellPadding=1 cellSpacing=0 width="100%"> <TR> <TD class=VertMenuTitle width=26>[img]{$ImagesDir}/dingbats_categorie.gif[/img]</TD> <TD valign=center width="80%" class=VertMenuTitle><FONT class=VertMenuTitle>{$lng.lbl_special}</FONT></TD>

I changed the cellPadding of the table to 1 and I want to eliminate the "height" from the 2 "<td>"

I'm searching for a way in witch I can change all the similar tables. It is not practical to modify every template so maybe some of you found out an igeniuos way to modify all of them or at least more .tpl in the same time.

Thanks
Reply With Quote