SOLVED

Re: Forms - How to Change color - Select Values

Go to solution
Sonali_Jadeja3
Level 4

Forms - How to Change color - Select Values

Hi,

Has anyone had success in changing font color for values of multi-select form field? Below is the circled text which I would like to see in white color.

Thanks!

pastedImage_0.png

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Forms - How to Change color - Select Values

That's not Multi-Select, it's Checkboxes.

An example CSS rule for those labels is

.mktoForm .mktoCheckboxList > label {

  color: white;

}

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: Forms - How to Change color - Select Values

That's not Multi-Select, it's Checkboxes.

An example CSS rule for those labels is

.mktoForm .mktoCheckboxList > label {

  color: white;

}

Sonali_Jadeja3
Level 4

Re: Forms - How to Change color - Select Values

THANK YOU SO MUCH Sanford Whiteman​!!