http://www.enmodeaffaires.com have a mailchimp form in a footer widget on this site. You helped me awhile ago format it somewhat as the theme seems to mess with it. Can you tell me how to get the form field spanning 90% of the width, also to make the word in the filed (couriell) be bold and yellow.
thanks
Hi Enmodeaffaires!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#footer #text-4 input#mce-EMAIL {
width: 90%;
font-weight: bold;
color: yellow;
}
Cheers!
Yigit
hi, that worked for the form field going wider and bold on the word, but somehow not yellow. I changed it to but still not working in firefox (it is working in explore, but not the bold part)
`#footer #text-4 input#mce-EMAIL {
width: 90%;
font-weight: bold;
color: #ffd321 !important;
}
Hey!
Would you like to change the color of placeholder as well? If so, please add following code to Quick CSS
::-webkit-input-placeholder,::-moz-placeholder,:-ms-input-placeholder {
color: #ffd321!important;
}
Best regards,
Yigit
that works when i type in my email address which is great, but client wants the actual word courielle to be yellow
http://www.enmodeaffaires.com/wp-content/uploads/2015/04/mailchimp2.jpg (screen shot)
Hey!
Try this out.
#mce-EMAIL::-moz-placeholder {
color: yellow !important;
}
See here for more info, https://css-tricks.com/snippets/css/style-placeholder-text/.
Best regards,
Elliott