-
AuthorPosts
-
September 4, 2015 at 10:10 am #378952
Hi
I am just trying the mailchimp plugin and just have a couple of problems –
how to change the colour of the placeholder text and
the button is just slightly off center.Could you point me in the right direction?
Many thanks
Martin
September 4, 2015 at 10:10 am #378953This reply has been marked as private.September 4, 2015 at 1:49 pm #379124Hi Martin,
You can add this under Custom > CSS in the Customizer.
/* To change the placeholder text color */ ::-webkit-input-placeholder { color: #999; } :-moz-placeholder { color: #999; } ::-moz-placeholder { color: #999; } :-ms-input-placeholder { color: #999; } /* For the button */ #x-subscribe-form-55 .x-subscribe-form input[type="submit"] { margin-left: 0; }
Hope this helps.
September 5, 2015 at 9:19 am #379610Hi
Thanks for getting back. I entered that but nothing seems to have changed. Still can’t change placeholder text color and button is still misaligned?
Many thanks
Martin
September 5, 2015 at 9:29 am #379615Hi There,
Please update the previous CSS a bit:
.text-white h2, .text-white p, .text-white .x-btn { color: #fff; } .text-white .x-btn { border-color: #fff; } .text-white .x-btn:hover { opacity: 0.75; } /* For the button */ .x-subscribe-form input[type="submit"] { margin-left: 0; } /* To change the placeholder text color */ ::-webkit-input-placeholder { color: #000 !important; } :-moz-placeholder { color: #000 !important; } ::-moz-placeholder { color: #000 !important; } :-ms-input-placeholder { color: #000 !important; }
Hope it helps.
September 5, 2015 at 9:33 am #379617Pefect, thank you. Cheers Martin
September 5, 2015 at 9:40 am #379620You’re most welcome 🙂
-
AuthorPosts