We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

[Dawn Theme] How do I change colors and border of "View Cart" and "Chek out" popup?

Solved

[Dawn Theme] How do I change colors and border of "View Cart" and "Chek out" popup?

namestolen
Excursionist
45 0 7

When you add a product to cart, there is a popup that shows up in the upper right hand corner and it has two buttons that I want to change the colors of.  Image for reference:

 

View Cart Check out.jpg

 

Thanks in advance!

Accepted Solution (1)

Moeed
Shopify Partner
7764 2082 2568

This is an accepted solution.

Hey @namestolen 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
a#cart-notification-button {
    border: solid 2px #ccba78 !important;
    background: black !important;
    color: #ccba78 !important;
}
a#cart-notification-button:after {
    box-shadow: unset !important;
}
</style>

RESULT:

Moeed_0-1730101915986.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 3 (3)

DaisyVo
Shopify Partner
4469 501 599

Hi @namestolen 

 

Could you please share your store URL with us? We can provide you with CSS code for that part. 

 

Looking forward to hearing from you soon. Thank you!

 

Best,

Daisy - Avada Support Team.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
DaisyVo
Shopify Partner
4469 501 599

Hi @namestolen 

 

You can follow our detailed guide below to customize these 2 buttons: 

 

Step 1: Go to your Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
Step 3: Copy the code below and paste it there. Then save the change

 

Code for "View cart" button:

 

a#cart-notification-button {
    background: black !important;
    color: white !important;
}

 

 

Code for "Check out" button: 

 

form#cart-notification-form > button {
    background: white !important;
    color: black !important;
}

 

 

Please let me know if it works. Thank you so much!

 

Best,

Daisy - Avada Support Team.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

Moeed
Shopify Partner
7764 2082 2568

This is an accepted solution.

Hey @namestolen 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
a#cart-notification-button {
    border: solid 2px #ccba78 !important;
    background: black !important;
    color: #ccba78 !important;
}
a#cart-notification-button:after {
    box-shadow: unset !important;
}
</style>

RESULT:

Moeed_0-1730101915986.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications