Archived topic
Search bar custom colour
3 replies · Started by _blank on August 13, 2020
Viewing posts 1–4 of 4
Hi
Is it possible to change the Search Bar in the footer to custom colour #000
At the moment it is coming from the theme colours but my client would like to customise it.
Thanks
Scott
Hi there,
try this:
.woocommerce.widget_product_search input[type="search"] {
color: #5e6679;
background-color: #ffffff;
border-color: #5e6679;
}
.woocommerce.widget_product_search input[type="search"]::placeholder {
color: #000;
}
.woocommerce.widget_product_search button {
color: #ffffff;
background-color: #5e6679;
}
.woocommerce.widget_product_search button:hover {
color: #ffffff;
background-color: #5e6679;
}
I included the ::placeholder as well.
Hi David,
Thanks for that, it worked perfectly.
Regards
Scott
You're welcome
This archived topic is closed to new replies.