what do you mean comment out the images?
^ ignore that... I am getting there but the links/font is HUGE. Do I need to assign a class to it and if so where please?
My current code is:
Code:
{* $Id: customer_manufacturers_list.tpl,v 1.3 2004/05/28 12:21:10 max Exp $ *}
{capture name=dialog}
{assign var="tmp" value="0"}
{section name=mid loop=$manufacturers}
{if $manufacturers[mid].manufacturerid}{assign var="tmp" value="1"}{/if}
{/section}
{section name=mid loop=$manufacturers}
{ if %mid.first% }
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
{/if}
{ if %mid.index% is div by 3}
<tr>
{/if}
<td align="left" valign="middle">
<table cellspacing="0" cellpadding="0" border="0"><tr>
<A href="manufacturers.php?manufacturerid={$manufacturers[mid].manufacturerid}" class="VertMenuItems"></td></tr>
<tr><td align="left" valign="middle">
<font size="3">{$manufacturers[mid].manufacturer}</font></td></tr></table>
</td>
{ if %mid.last% }
</tr>
</table>
{/if}
{/section}
{/capture}
{include file="dialog.tpl" content=$smarty.capture.dialog extra="width=100%"}
Thank you so much!