Hi,
I Use Gravity forms for a rather complex registration form.
I use the same form on different websites and with the enfold theme, the fields are changed by the theme.
A select field is shorter and has more padding. A large text field should have 93% of the space and is also shorter.
Any tips or tricks?
It is as if the field size with some fields doesn’t work. Small, Medium Large have the same effect.
Thanks
Hey!
Try adding this code to the Quick CSS:
.gform_wrapper .top_label li.gfield.gf_left_half input.medium,
.gform_wrapper .top_label li.gfield.gf_left_half input.large,
.gform_wrapper .top_label li.gfield.gf_left_half select.medium,
.gform_wrapper .top_label li.gfield.gf_left_half select.large,
.gform_wrapper .top_label li.gfield.gf_right_half input.medium,
.gform_wrapper .top_label li.gfield.gf_right_half input.large,
.gform_wrapper .top_label li.gfield.gf_right_half select.medium,
.gform_wrapper .top_label li.gfield.gf_right_half select.large {
width: 97% !important;
}
Cheers!
Josue