Skip to main content
January 9, 2014
Répondu

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 below, and it seems there is no setting available for this. 
Ce sujet a été fermé aux réponses.
Meilleure réponse par
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 commentaires

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