I\'d like to hide the bottom field validation error for field ID6 in form ID2. I\'ve tried various CSS codes of my own including this one that was given to me by another support agent of Formidable Forms, however, none has worked so far.
#frm_error_field_6 {
display: none !important;
}
I\'d very appreciate assistance on this matter.
To hide all the errors on your form you can use this (though I don't know what unintended consequences it might have).
.frm_error {
display: none;
}
To hide just that one field, you can do this (using the field key, not the id)
#frm_error_field_mpcec {
display: none;
}
Please login or Register to submit your answer
Please provide a link to the page.
https://africalandtour.com/
Under Destination > Tour Options.
I'd like to hide bottom validation for all fields within that form, so I'd appreciate if anyone could provide a solution for me that will lead to such outcome, I don't mind individually disabling them field by field.