Re: Add to cart pop-up in dawn theme transparent

Add to cart pop-up in dawn theme transparent

mgrp
Excursionist
22 1 3

Hello all! I'm having some trouble with the add to cart pop-up, it appears transparent, you can still see the words and checkout button but there's no color so its hard to read and I cannot figure out how to add a background color to it. any help would be greatly appreciated 🙂

 

store url is michaelgrp.com

Replies 5 (5)

SealSubs-Roan
Astronaut
866 66 85

Hi @mgrp 

 

Are you using an application for this add to cart pop-up? If so, I highly suggest that you reach out to the app developer so, they can further check the settings of your app or any error that might be causing this issue.

Roan
Please let me know if it works by marking it as a solution!
Seal Subscriptions App, a subscription app for Shopify, with glowing user testimonials and a free plan.
mgrp
Excursionist
22 1 3

I am not, no 

Tech_Coding
Shopify Partner
514 132 131

Hello @mgrp 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   div#cart-notification {
      background: #fff !important;
  }
  .cart-notification__links a.button {
     color: #000 !important;
     border: 1px solid #000 !important;
  }
  form#cart-notification-form button {
      border: 1px solid #000 !important;
  }
</style>

Tech_Coding_0-1729351059135.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
mgrp
Excursionist
22 1 3

Hi there! unfortunately that didn't work for me