Customize spaces within a form | Community
Skip to main content
January 9, 2014
Solved

Customize spaces within a form

  • January 9, 2014
  • 2 replies
  • 936 views
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 below, and it seems there is no setting available for this. 
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by
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.

2 replies

January 9, 2014
Forms 2.0 will be out in a few weeks. Wait for the new feature set, it does what you want.
Accepted solution
January 9, 2014
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.