Re: Changing checkbox values color in forms 2.0

Anonymous
Not applicable

Re: Changing checkbox values color in forms 2.0

Oh my don't worry, I was missing a '}'.

Thank you soooo much for your help! I owe you a drink if you are coming to the Conference!

Bec
Anonymous
Not applicable

Re: Changing checkbox values color in forms 2.0

Hi, I am trying to do a similar thing here.....I have changed the label colour but for some reason the radio button text is still appearing in black? I tried the html code above and it doesn't seem to be making a difference. 
Anonymous
Not applicable

Re: Changing checkbox values color in forms 2.0

Hey Lauren,

Here is the css I used to change the grey text I circled above to white: 

.mktoForm {
color: #ffffff !important;
}

Let me know if that helps?

Cheers,
Bec
Anonymous
Not applicable

Re: Changing checkbox values color in forms 2.0

Perfect! Thanks so much Bec. 
Anonymous
Not applicable

Re: Changing checkbox values color in forms 2.0

For those curious on changing the color of the select field text, "Select Industry..." in this example,  I was able to change the color using this custom CSS:
 
.mktoForm select.mktoField {color: #999999 !important;} 
 
The only slight issue, is that it changes the color for all the values... the "Select Industry..." default text as well as all the values you can select from the list.

If anyone knows of a way to change only the color of "Select Industry..."  and not the values in the list, I would love to know how!  I'd like to change the default 'select' text to grey, but leave all the values as black.