How to Hide Form Field Titles


If you need to use form field titles to pass URL parameters to the next page, you can still hide them with the following steps.

1. Add the following class BLOCK where your form field is:

hide_form-field_title

2. Add the following CSS to your page or site CSS.

.hide_form-field_title .form-field .title {
  display:none!important;
}
OPTION: HIDE ALL FORM FIELDS SITEWIDE
Just add the following to your sitewide CSS code:
.form-field .title {
  display:none!important;
}

Still need help? Contact Us Contact Us