I have a simple flash form. when I use the cfformgroup type="horizontal" tag
to put the City, State and Zip on one line, it indents it on my form. How can
I make the horizontal line line up on the left with the other fields???
Thanks you for your help.
:beer;
<cfset datenow = DateFormat(Now(), "MM/DD/YYYY")>
<cfform action="NewJobProcess2.cfm" format="flash" skin="haloorange"
width="850">
<cfformgroup type="tabnavigator">
<cfformgroup type="page" label="Job Details">
<cfformgroup type="vbox" style="borderStyle: solid;">
<cfformgroup type="HORIZONTAL" style="horizontalGap: 0;">
<cfformgroup type="vbox" width="700">
<cfselect name="JobCustomer" label="Contact:" width="300">
<option>
<cfoutput query="getcustomer">
<option value="#customerid#">#customerfirst# #Customerlast#
</cfoutput>
</cfselect>
<cfinput name="JobName" type="text" label="Job Name:" width="250" required
message="You Must enter a Job Name" />
<cfinput name="JobLocation" type="text" label="Location:" width="250" />
<cfinput type="datefield" label="Date:" value="#datenow#" name="jobenterdate"
width="100" validate="date">
<cfinput name="JobStreet" type="text" label="Street:" width="250" />
<cfformgroup type="horizontal">
<cfinput name="JobCity" type="text" label="City / State / Zip:" width="150" />
<cfinput name="JobState" type="text" width="150" mask="AA" value="CA" />
<cfinput name="JobZip" type="text" width="100" mask="99999" validate="zipcode"
/>
</cfformgroup>
<cfselect width="300" name="jobwheredidyouhear" query="wheredidyouhear"
value="wheredidyouhearid" display="wheredidyouhear" label="Referred
by:"></cfselect>
</cfformgroup>
</cfformgroup>
</cfformgroup>
</cfformgroup>
<cfinput type="submit" name="submit" value="Submit Job Details" />
</cfform>