What is the CSS to change the highlighting for form validation? My forms have a black background, with dark grey fields and the highlighting is too dark.
What is the CSS to change the highlighting for form validation? My forms have a black background, with dark grey fields and the highlighting is too dark.
If you want to change the field highlighting, you could use something like this in your style.css
.gform_wrapper li.gfield.gfield_error.gfield_contains_required {
background: #111 !important;
}
Thanks, that worked!