I’m using the Gift Store theme, but want to amend the colour of quite a few items from the default green, is there an easy way to do this please? The places, I’ve found so far, that I’d like to amend are: Quick View & Add to basket buttons, close on quickview window, filter by price window & filter button within this. Obviously, with some theres the standard and link colours, which are slightly different too. Thanks
If you want to change the button color, you can use the following code:
.woocommerce ul.products li.product .button { background-color: #...; border-color: #...; } #dwqv-modal #dwqv-close { background-color: #...; color: #....; } .woocommerce .shop-filter .filter-inner .toggle-filter { background: #....; color: #....; }
Also, you should let me know detail about the positions that you want to change the color, I will check and help you resolve it.
Can you let me know the code to change the ‘Join’ button text and colour? This is found in the footer
You can use the following code:
.form-inline .btn-success {
color: #fff;
background-color: #6ab344;
border-color: #6ab344;
}
Please login or Register to submit your answer