Change input text area color

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

1 Like

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>