For example, how can I control the positioning and html output for the fieldset and legend tags generated? I create my own custom css, list based forms and I can't seem to get the fieldset outside of the list....
thanks in advance for any suggestions.
EDIT: here's an example of what I'm my custom template
This results in a form that looks like this (HTML excerpt):{$hidden}
{foreach from=$fields item=entry}
{if $entry->display == 1}
{strip}
required == 1 || $entry->css_class != ''}
class="{if $entry->required == 1}required{/if}
{if $entry->required == 1 && $entry->css_class != ''} {/if}
{if $entry->css_class != ''}{$entry->css_class}{/if}"{/if}>
{if $entry->hide_name == 0}
input_id}">{$entry->name}
{if $entry->required_symbol != ''}
{$entry->required_symbol}
{/if}
{/if}
{if $entry->multiple_parts == 1}
{foreach from=$entry->input item=part}
{$part->input} {$part->name}
{/foreach}
{else}
{$entry->input}
{/if}
{if $entry->valid == 0} <--- {/if}
{/strip}
{/if}
{/foreach}
{$submit}
And etc...
Your Information
First and Last Name*
Company Name
Website Address
I'm trying to get the fieldset and legend (Marked in Bold above) outside of my list. I've tried as much as I know and I can't figure it out...
