05/08/2010, 17:55:41
Tu peux appliquer une classe distincte sur chaque labels et champs de cette manière :
counter : http://www.smarty.net/manual/fr/language...ounter.php
Code :
{foreach from=$controls item=control}
<tr>
<td class='label{counter name=label}'>{$control->hidden}
{if $control->color != ''}
<font color="{$control->color}">{$control->prompt}{$control->marker}</font>
{else}
{$control->prompt}{$control->marker}
{/if}
</td>
<td class='input{counter name=champ}'>{$control->control}</td>
</tr>
{/foreach}