Hi,
How can I change the grey text in the search field to white? I tried the CSS from stackflow that was recommended but that didn’t do it. Here is the link:
http://sprocketforce.com/digarati/cxo/
Thanks,
Julie
Hi,
How can I change the grey text in the search field to white? I tried the CSS from stackflow that was recommended but that didn’t do it. Here is the link:
http://sprocketforce.com/digarati/cxo/
Thanks,
Julie
Type this before the tag in your site’s settings (Custom Code) Change color to your liking
<style>
::-webkit-input-placeholder {
color: red !important;
}
:-moz-placeholder { /* Firefox 18- */
color: red !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: red !important;
}
:-ms-input-placeholder {
color: red !important;
}
</style>