Change colour of search bar placeholder text
I am trying to change the default colour of the placeholder text in the popup search bar as I have modified the colour and it's lost heaps of contrast. I have used the following CSS but it doesn't seem to work form#searchform input-placeholder { color:white!important; }
Is there something I am missing here?
thanks
Comments
1. You use cache
2. You did mistake somewhere in your custom css and any code below broken css won't work
3. You copied this code in wrong place or with unnecessary tags
color: #ffffff;
}
#Top_bar .search_wrapper input[type="text"]:-moz-placeholder { /* Firefox 18- */
color: #ffffff;
}
#Top_bar .search_wrapper input[type="text"]::-moz-placeholder { /* Firefox 19+ */
color: #ffffff;
}
#Top_bar .search_wrapper input[type="text"]:-ms-input-placeholder {
color: #ffffff;
}
+ other suggested solutions with no luck. Finally found John's code which works fine !
Hello @georgetate,
I'm glad that you solve your problem, is there anything else we can help you with?
thanks