I could not figure out the quick css to change the color of the word “Search” without changing the whole submenu items.
Hey Shane!
Thank you for using Enfold.
Are you trying to change the color of the “Search” text inside the search field? Please use this in the Quick CSS field:
/* do not group these rules */
*::-webkit-input-placeholder {
color: red !important;
}
*:-moz-placeholder {
/* FF 4-18 */
color: red !important;
}
*::-moz-placeholder {
/* FF 19+ */
color: red !important;
}
*:-ms-input-placeholder {
/* IE 10+ */
color: red !important;
}
Regards,
Ismael