How do I change the color of the “Continue Shopping” button in the woo commerce message area after adding an item to the cart. I have changed the background colors for the message box, but can’t find the spot to change this one button.
Hey jasondbeaver!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#top div.woocommerce-message a {
color: green !important
background-color: red !important;
}
#top div.woocommerce-message a:hover {
color: green !important
background-color: red !important;
}
Best regards,
Yigit
Yigit,
For some reason this did not change the button color. I put the code in the quick CSS as instructed and cleared the cache. Thoughts?
Hi!
Can you post the link to your website please so i can take a look?
Regards,
Yigit
http://chillnaudio.com/cart/ You will need to add an item to the cart.
Hey!
Please use following code in Quick CSS instead
#top div div.woocommerce-message a.button {
background-color: #b21f24;
color: #ffffff;
border-color: #b21f24;
}
#top div div.woocommerce-message a.button:hover {
background-color: #757575;
color: #191919;
border-color: #757575; }
Cheers!
Yigit
Perfect….
One more question: do you know how to change the hover attribute to grey for the state drop down box on the checkout page?
Hey!
I am not sure if i understood where you meant clearly. Do you mean Alaska, Alabama and so on? If so, please add following code to Quick CSS as well
#billing_state_chosen > div > ul > li:hover { color: red; }
If this is not what you meant, please post a screenshot and show
Best regards,
Yigit
Perfect…thanks!