Once I press the “Add to Cart” Button it leads to this drawer type of cart. How do I change the colour for this?
Hi @puppuppup ,
add this code to your base.css file.
Navigate to online store >> Click edit theme code.
Now find base.css and paste the following code:
#cart-notification {background-color: red !important;}
Change the color according to your preferences.
My mistake I should have clarified ![]()
I wanted the checkout button to be this colour #F85811
button.button.button--primary.button--full-width {
background-color: #F85811!important;
}
Add this code in the base.css file
Now how do I make the text white?
1 Like
button.button.button--primary.button--full-width {
background-color: #f85811!important;
color: white !important;
}
@puppuppup
if helpful like our Solution.

