Hi there.
How can I change the COLOR of the INPUT fields placeholder text .input _is _empty?
Text must be brighter before filling the input fields.
Any ideas?
Hey Stephan,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan Shannon
Look here, I mean the PLACEHOLDER text in th INPUT fields, should come in a different color or brightness then filling out the fields:
Hi,
Add the following to quick css and adjust the color to what you need:
::-webkit-input-placeholder {
color: #006ec8!important;
}
::-moz-placeholder
}
color: #006ec8!important;
}
:-ms-input-placeholder {
color: #006ec8!important;
}
Best regards,
Jordan Shannon
This CSS code doesn’t work. I get several error messages.
Hi,
Thanks for the update. CSS code doesn’t throw error messages, so I’m not sure what you mean by your last reply? If you can’t give us a link to where we can see the actual elements then we can only give you general code and hope for the best.
You can try this to see if works better:
::-webkit-input-placeholder {
color: #006ec8!important;
}
::-moz-placeholder {
color: #006ec8!important;
}
:-ms-input-placeholder {
color: #006ec8!important;
}
Best regards,
Rikard
Hi there
CSS Syntax was wrong on line 7 and line 8:
https://www.imagebanana.com/s/1809/tDcaUcgs.html
Now, it’s fine, thank you ;-)
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon