-
AuthorPosts
-
May 1, 2015 at 5:38 am #262991
Hi,
I’m trying to change the placeholder text color on my gravity form. They have given me the solution but I can’t get it to work when adding it to the customise css box:*::-webkit-input-placeholder {
color: red;
}
*:-moz-placeholder {
/* FF 4-18 */
color: red;
}
*::-moz-placeholder {
/* FF 19+ */
color: red;
}
*:-ms-input-placeholder {
/* IE 10+ */
color: red;
}http://stackoverflow.com/a/9705712
I’m using the latest version of WP, X and Gravity. Any ideas?
Thanks
RichardMay 1, 2015 at 7:57 am #263060Hi Richard,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
May 1, 2015 at 8:15 am #263078Hi, many thanks – here’s the URL I’m working to fix:
http://www.rainbeauxmedia.com/contact/
Many Thanks!
May 1, 2015 at 2:08 pm #263265Hi Richard,
Please use this code instead:
input::-webkit-input-placeholder { color: red; } input:-moz-placeholder { /* FF 4-18 */ color: red; } input::-moz-placeholder { /* FF 19+ */ color: red; } input:-ms-input-placeholder { /* IE 10+ */ color: red; }
Hope this helps. 🙂
Thank you.
May 5, 2015 at 3:17 am #265652That’s great, thanks!
May 5, 2015 at 4:18 am #265693You’re welcome. Glad we could help. 🙂
August 13, 2015 at 6:13 pm #358664Hi,
I’m trying to change the placeholder text color of email field of my subscribe section. I’ve used the above CSS code but no luck.Currently its black but I need to change to white.
August 13, 2015 at 10:10 pm #358793Hi There,
You can add this under Custom > CSS in the Customizer.
::-webkit-input-placeholder {color: #fff !important;} ::-moz-placeholder {color: #fff !important;} /* Firefox 19+ */ :-moz-placeholder {color: #fff !important;} /* older Firefox*/ :-ms-input-placeholder {color: #fff !important;}
Hope it helps, Cheers!
August 13, 2015 at 10:42 pm #358814It worked perfectly!!! Thankyou. You guys are just awesome!!
August 13, 2015 at 11:47 pm #358871We’re delighted to assist you with this.
Cheers!
-
AuthorPosts