SOLVED

Customize spaces within a form

Go to solution
Anonymous
Not applicable

Customize spaces within a form

Hey, is there a way to insert spaces between label text and field within a form? My form has the text bound to the field 0EM50000000RMav.jpgbelow, and it seems there is no setting available for this. 
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Customize spaces within a form

If urgent you can add a simple custom CSS using an HTML block page element, using the style tag.
 
It will be something like
 
.form input {
    display: block;
    margin-bottom: 1em;
}
 
.form label {
    float: left;
    margin-right: 0.5em;

0.5em is used for responsive design. You can also use px to denote the number of pixels.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Re: Customize spaces within a form

Forms 2.0 will be out in a few weeks. Wait for the new feature set, it does what you want.
Anonymous
Not applicable

Re: Customize spaces within a form

If urgent you can add a simple custom CSS using an HTML block page element, using the style tag.
 
It will be something like
 
.form input {
    display: block;
    margin-bottom: 1em;
}
 
.form label {
    float: left;
    margin-right: 0.5em;

0.5em is used for responsive design. You can also use px to denote the number of pixels.