Site logo

Archived topic

Change color of ad to cart only

3 replies · Started by Edwin on November 21, 2017

Viewing posts 1–4 of 4

Can you tell me if you know the CSS to change the background-color for "add to cart only?"

Thanks

Edwin

Hi there,

Try this:

.woocommerce a.button.add_to_cart_button {
    background-color: #222;
}

Thanks Tom

That worked. What about rollover. I tried this:

.woocommerce a.button.add_to_cart_button a:hover{
background-color: #ccccccc!important;
}

Hmm this should work:

.woocommerce a.button.add_to_cart_button:hover {
    background-color: #ffffff;
}
This archived topic is closed to new replies.