Required field error message texts: customize style

Dear,
Please allow customization of required field error messages, see image: (This is a customizable form component).

In the header custom code of the page, insert this code

<style>
#form1 .form-error-text{
  color: black;
}
</style>

Change #form1 by the id of your form.
Change black by whatever color you want. You can use hex format too (ex. #FF0000)

2 Likes

Thanks folks will pass this to the team! to find a no-code solution too :slight_smile:

It is marked as a solution as it solves the problem. Thank you!