I have styled everything on the form but I am having a really hard time making the *pulldowns* consistent with the look of the form :-/
Here is the form (see pulldown options): http://baltimoreprotectionservices.com/ ... ade-rental
This is the code I am using on the input part of the form template:
Code: Select all
{* * * INPUT * * *}
{/if}
{if $entry->multiple_parts == 1}
{section name=numloop loop=$entry->input}
{if $entry->label_parts == 1}
<div>{$entry->input[numloop]->input} {$entry->input[numloop]->name}</div>
{else}
{$entry->input[numloop]->input}
{/if}
{if isset($entry->input[numloop]->op) && $entry->input[numloop]->op}{$entry->input[numloop]->op}{/if}
{/section}
{else}
{if $entry->smarty_eval == '1'}{eval var=$entry->input}{else}{$entry->input}{/if}
{/if}
{if $entry->helptext != ''} <a href="javascript:fbht('{$entry->field_helptext_id}')"><img src="modules/FormBuilder/images/info-small.gif" alt="Help" /></a>
<span id="{$entry->field_helptext_id}" style="display:none" class="fbr_helptext">{$entry->helptext}</span>{/if}
{* * * DIV FOR RED ARROW ERROR * * *}<div class="error_message">{if $entry->valid == 0} <--- {$entry->error}{/if}</div>
{if $entry->needs_div == 1}
{* * * INPUT * * *}
<div class="clear"></div>
*This didn't work*
Code: Select all
{if isset($entry->input[numloop]->op) && $entry->input[numloop]->op}<div class="PULLDOWN">{$entry->input[numloop]->op}</div>{/if}
Code: Select all
<div class="PULLDOWN">{$entry->input[numloop]->input}</div>
http://stackoverflow.com/questions/1230 ... rom-safari
Any suggestions?