Buy me a coffee

How to reduce height of Fields in Form Block

To reduce height of Fields in Form Block

F830dac14d9aebc4b28b Min

You can use these CSS code to Custom CSS box

div.form-block input {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    height: 30px !important;
}
div.form-block textarea {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    height: 80px !important;
    min-height: unset !important;
}

76d3994a0011a64fff00 Min

Result

1a872f75b72e1170483f Min