Archived topic
Apply coupon button
3 replies · Started by Emma on May 4, 2020
Viewing posts 1–4 of 4
I would like to change the colour of only the 'apply coupon' button on the checkout page. Do you know the css class for this button? I only want to change the colour of this specific button, no other buttons on the site.
Hi there,
try this CSS:
.woocommerce button.button[name="apply_coupon"] {
color: white;
background-color: green;
}
.woocommerce button.button[name="apply_coupon"]:hover {
background-color: red;
}
That's great! Thanks so much
You're welcome
This archived topic is closed to new replies.