Right Align Your Flash Form Submit Button
July 6th, 2006
Although I’m writing this to apply to your submit buton, you can use it with just about any controls in a CFFORMGROUP. I use it on my Flash Forms to move the submit button to the right side of the screen, which often looks nice when under a PANEL or TABNAVIGATOR. The code is quite simple:
1 2 3 4 5 6 7 8 9 10 | <cfform name="frmSample" method="post" format="flash"> <cfformgroup type="tabnavigator"> <cfformgroup type="page" label="Sample Tab"> <cfinput type="text" name="txtSample" value="Sample" label="Sample Text: "> </cfformgroup> </cfformgroup> <cfformgroup type="horizontal" style="horizontalAlign:right;"> <cfinput type="submit" name="btnSubmit" value="Go!"> </cfformgroup> </cfform> |
Voila!
Thanks for the tip!