Hello, how do I add a blank line within a form? I want a blank line between the label and the place where the user types the field value... and also before the submit button. Here is an example form...
[creduserform]
<div class="form-group">
<label>What is your favorite color?</label>
***ADD BLANK LINE HERE***
[cred_field field="favorite-color-field" force_type="field" class="form-control" output="bootstrap"]
</div>
***ADD BLANK LINE HERE***
[cred_field field="form_submit" output="bootstrap" value="ACTIVATE" class="btn btn-primary btn-lg"]
[/creduserform]
Hello and thank you for contacting the Toolset support.
Well, you can add new lines using two
tags. Or an a empty <p></p> tag.
hidden link
Or you can use a div with a custom class, and define the styles of the class in the form's CSS section:
<div class="my-separator"></div>
And style it using CSS:
.my-separator {
min-height: 20px;
margin: 10px;
/* etc. */
}
I hope this helps. Let me know if you have any questions.