Hide Element Validation Symbol

  • Views Views: 8,934
  • Last updated Last updated:
  • To hide the Validation symbol (red star) for an element, create a custom css file for your form's template and add something like:
    CSS:
    #fb_el_tablename___elementname {
    background:none !important;
    }
    where 'tablename___elementname' is your element's full name.
Back
Top