Hi All
I just updated my enfold to 5.7.1 and the search box background is now green.
You can see the problem here (search icon is in the top right)
http://www.lupineadventure.co.uk
I have the following in my custom CSS which has always worked to turn it white up to now.
/* Search Field*/
#top .header_color input[type=’text’] {background-color: #ffffff;}
Can anyone suggest why this is no longer working
Hey Lupine-andy,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .header_color #s {
background-color: #ffffff;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
yes – or you decide to influence the placeholder text and input text.
#top .header_color input::placeholder,
#top .header_color input[type="search"] {
color: #fff !important;
}
or a combination:
#top .header_color input::placeholder,
#top .header_color input[type="search"] {
color: #fff !important;
}
#top .header_color #s {
background: linear-gradient(-90deg,#7ea338,#3b4b1e);
}