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!
Solved! Go to Solution.
That's not Multi-Select, it's Checkboxes.
An example CSS rule for those labels is
.mktoForm .mktoCheckboxList > label {
color: white;
}
THANK YOU SO MUCH Sanford Whiteman!!