Home › Forums › WoodMart support forum › style change of theme colors for all elements › Reply To: style change of theme colors for all elements
November 5, 2019 at 6:01 am
#154770
Aizaz Imtiaz Awan
Keymaster
Most Welcome,
The “Styles & Colors” option inside the theme settings covers most of the areas. But some of them are not a part of theme. Like some of WooCommerce or other elements. So that’s why for those specific ones we have to use custom CSS.
You can use the below CSS code in Theme Settings >> Custom CSS >> Global Custom CSS:
For Sale Label:
.labels-rounded .product-label {
color:black;
}
For Add to Cart text on hover:
.woodmart-hover-quick .woodmart-add-btn > a{
color:black;
}
For Search:
.search-style-with-bg.searchform .searchsubmit{
color:black;
}
Best Regards.