Hello!
Could someone please help me figure out how to change the color of the “newsletter” on this page from grey font to white? I tried this code but it doesn’t work:
#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
color: white !important;
}
Thanks so much!
Hey peanuttario,
Actually that is placeholder text so it has to be styled as follows:
input[type="email"]::-webkit-input-placeholder {
color: #fff!important;
}
input[type="email"]::-moz-placeholder { /* Firefox 19+ */
color: #fff!important;
}
input[type="email"]:-ms-input-placeholder { /* IE 10+ */
color: #fff!important;
}
input[type="email"]:-moz-placeholder { /* Firefox 18- */
color: #fff!important;
}
Best regards,
Jordan Shannon
Thank you Jordan! Works great.
Hi,
Great! If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon