0
Move label above form field in Flash Form?
Engaged
,
/t5/coldfusion-discussions/move-label-above-form-field-in-flash-form/td-p/1066365
Sep 05, 2006
Sep 05, 2006
Copy link to clipboard
Copied
Hi,
How can you put the label on a form field "above" the form field as opposed to the left of a text input for example?
Thanks,
-Westside
How can you put the label on a form field "above" the form field as opposed to the left of a text input for example?
Thanks,
-Westside
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Engaged
,
/t5/coldfusion-discussions/move-label-above-form-field-in-flash-form/m-p/1066366#M95909
Sep 06, 2006
Sep 06, 2006
Copy link to clipboard
Copied
One way you can do it is by using <cfformitem> similar
to the following:
<cfform name="myform" format="flash">
<cfformitem type="html">
Label:<br />
</cfformitem>
<cfinput type="text" name="textfield" value="">
</cfform>
HTH
Ted Zimmerman
<cfform name="myform" format="flash">
<cfformitem type="html">
Label:<br />
</cfformitem>
<cfinput type="text" name="textfield" value="">
</cfform>
HTH
Ted Zimmerman
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
WestSide
AUTHOR
Engaged
,
LATEST
/t5/coldfusion-discussions/move-label-above-form-field-in-flash-form/m-p/1066367#M95910
Sep 07, 2006
Sep 07, 2006
Copy link to clipboard
Copied
Hi,
This did work, however, the alignment is off, the field is maybe 20 pix to the right of the label. The label is above the form field which is what I want, but the form field is not directly under the label.
-Westside
This did work, however, the alignment is off, the field is maybe 20 pix to the right of the label. The label is above the form field which is what I want, but the form field is not directly under the label.
-Westside
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

