Form Editing

Permalink
I have attached a screen shot.. is there any way I can split that and have half on the left and half on the right?? I don't see much for options as to how to do that but really would like to be able to so we can keep it as short as possible

1 Attachment

timstrathman
 
JohntheFish replied on at Permalink Reply
JohntheFish
You could use css columns
http://www.w3schools.com/css/css3_multiple_columns.asp...

Or you could wrap each half in a floated div with just less than 50% width for each half.
juddc replied on at Permalink Reply
juddc
I like to use jordanlev's Form Tableless Layout -http://www.concrete5.org/marketplace/addons/form-tableless-layout/...

Download it and throw it in the packages directory - then install it in the Dashboard. Everything is wrapped in a div with a class of .field - so you can work backwards from there.

ie:
.field {
    width: 50%;
    float: left;
    margin-bottom: .5em;
    padding-right: 1em;