-
OSUREN
How can I change the color of the “UPDATE CART” button from the grey? I cant see any of the wording as it is now.
-
Hi there,
The style is from Woocommerce, try this CSS:
.woocommerce button.button[value="Update cart"] { color: #FFF !important; opacity: 1 !important; }
-
OSUREN
That didnt work. So the image I sent you shows a quantity of 1 item, and when I increase the quantity in the car the button goes from complete grey to it’s normal colors…Is there any way to have it just show it’s normal colors that are present on the rest of the site all the times like the rest of the sites buttons?
-
Alvind
Can you provide the site URL?
-
OSUREN
Figured it out with this code online.
.woocommerce-cart .actions .button:disabled{
color: #ccc!important;
}I added these css codes in to make it exactly how I wanted it.
/* update cart button woocommerce */
.woocommerce-cart .actions .button:disabled{
color: #ccc!important;
color: #3eb489 !important;
opacity: 50 !important;
} -
Alvind
Awesome, glad to hear that!
- You must be logged in to reply to this topic.