Reply To: How to change the "Search Form" background color?

Homepage Community Forums Epik Theme Support How to change the "Search Form" background color? Reply To: How to change the "Search Form" background color?

#13820
Wes
Moderator

    I’ve actually never done that before, so I had to do some research and came up with this –

    ::-webkit-input-placeholder {
       color: #000;
    }
    
    :-moz-placeholder {
       color: #000;  
    }
    
    ::-moz-placeholder {
       color: #000;  
    }
    
    :-ms-input-placeholder {  
       color: #000;  
    }

    That should get it working for all browsers.