Hi @maugegonzbru
I hope you’re well today!
This is because that link is just a HTML content of the field. You can customize that content by editing the field.
So to change color, you’d need to use simple additional CSS. By default field has two links: “privacy policy” and “terms and conditions”. If you want to change color the same way for both of them, you can use this CSS:
.forminator-consent__label a {
color:#F00;
}
.forminator-consent__label a:hover {
color:#00F;
}
The first rule is regular color and the second one is “on hover” (mouse over).
If you only want to change first link (with default setup, the first one would be “privacy policy”) you can use this instead:
.forminator-consent__label a:first-of-type {
color:#F00;
}
.forminator-consent__label a:first-of-type:hover {
color:#00F;
}
To add CSS, simply go to “Appearance” settings of the form, enable custom CSS option, put CSS there and save the form.
Best regards,
Adam