I'm creating a form that uses checkboxes. It has 72 checkboxes so I would like to display it as 3 columns instead of one. Is there a simple way to do this?
thanks.
I'm creating a form that uses checkboxes. It has 72 checkboxes so I would like to display it as 3 columns instead of one. Is there a simple way to do this?
thanks.
Yep, with a short line of custom CSS it will work.
You'll want to append something like this to the end of your theme's style sheet.
ul#input_1_5.gfield_checkbox li {width:25%; float:left; height:25px;}
Just view your form source, and get the ID from the UL containing the checkboxes and replace the "input_1_5" above with your ID. You can tweak the values to whatever looks best for your form.
Good luck.
Thanks that worked perfectly. Thanks so much!