I have a client that would like to remove the whitespace between the fields of this form. Is there a way to change the amount of whitespace between the field in Laserfiche forms?
Question
Question
Can I format the white space between fields in Laserfiche Forms?
Answer
It looks like your form is currently set to have the labels on top, which is what is causing a lot of that space. You can try moving the labels to the left of the fields. Aside from that, you will need to use CSS to remove some of the spacing/padding.
Hello @████████ thank you I will give that as an option to my client.
I have also found this CSS that worked well to remove the padding between the fields.
/* No Padding for drop-downs */
.pdc fl-dropdown {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
/* No Padding For Single Line */
.pdc fl-single-line {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
/* No Padding for Custom HTML */
.pdc fl-custom-html {
padding-top: 0px !important;
padding-bottom: 0px !important;
}