How do I make this "Check Out" Button my theme colour?

Once I press the “Add to Cart” Button it leads to this drawer type of cart. How do I change the colour for this?

divineemporiumstore.com

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.

I only wanted the checkout button to be red. not the entire cart page hahahaha

My mistake I should have clarified :slightly_smiling_face:

I wanted the checkout button to be this colour #F85811

@puppuppup

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.