Newbie to HubSpot here. The color of the asterisk for required fields and the “Please complete this required field” error message that shows up when you don’t fill out a required box in a form clashed with the background of some of webpages. I was able to change the color of those things from red to blue by changing our CSS stylesheet and adding HTML snippets to the individual webpage. But I can’t figure out how to change the color of the “Please complete this required field” text for the GDPR section where they opt-in to different email subscriptions. Does anyone know how to change this? (The red text in the attached picture is the text I want to change the color of)
this is most likelly because the “head HTML” is getting loaded into the {{ standard_header_include}}-hubl in your template. And since it’s - in most cases - before your theme-override.css(or similar) the theme-override.css overrides the “head HTML” settings.
Things you can do:
1. Try the sledgehammer method
It should look like this:
.legal-consent-container label.hs-error-msg{
color:#0000ff !important;{# blue color #}
}
if this works - open your theme css folder and search for the theme-override.css(might be named theme.css or similiar) and place the code(first without !important) at the very bottom. Save it and this should work.