Fix Consent text

the consent text shows up in upper case and bold text

Hi there, @Nader_Bakhoum :wave:

I’ve checked your widget and the consent text isn’t bold and uppercase. However, if you’d like to achieve this, you can make the consent text bold in the settings:

And here is the code to make it uppercase:

[class*="choice-option__Label-sc"] {
  text-transform: uppercase;
}

If I misunderstood your idea, please elaborate on what you mean :slightly_smiling_face:

Check the widget on my website and you will see that the consent text is displayed the way I described.

1 Like

Ah, I see it now, thank you!

There was an issue with the conflicting styles on your website and we’ve fixed it using this code in the Custom CSS field:

[class*="choice-option__ItemLabel-sc"]:last-child > div {
  font-size: 15px;
  font-weight: 400;
  color: rgb(17, 17, 17);
  text-transform: none;
}

[class*="choice-option__ItemLabel-sc"]:last-child > div > a {
  text-decoration: underline;
}

Please check your website and let me know if it’s fine now :slightly_smiling_face: