Can someone tell me how I can get these items to spread out onto one line? I have the field width set to X-Large.
Question
Question
Answer
There is a percent option on the column:
This option controls the percentage that a certain column occupies.
You can use this together with the percent option on row label, so the values sum up to 100%.
Replies
Hi Gloria,
I did something similar to get two fields on to one line..
/*Displays two fields per line*/
.TwoPerLine{display: inline-block; width:47%;}
.TwoPerLine .cf-medium {width:97%;}
You just need to have the CSS value in each field set to 'TwoPerLine'
Hi Gloria,
How is the form configured? Is it a table field with two columns?
If so, the two fields should be in one line by default, do you have custom CSS for formatting?
OK, let me ask this differently. How do I get a single column table to expand the full width of the page?
This is how I have it set up:
Thanks.
There is a percent option on the column:
This option controls the percentage that a certain column occupies.
You can use this together with the percent option on row label, so the values sum up to 100%.
Thank you! You would think "AUTO" would take up the 80%.