Override cart notification text to black?

hi, i nee done more thing. can i override this color of the text from white to black?

im using a paid etsy theme. looking for the coding to add to component.cartnotification.css

url. https://vtwz80uo1q7qw3l6-48114466969.shopifypreview.com

Hi @abcerra1 ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/component-cart-notification.css->paste below code at the bottom of the file:

.cart-notification-product__name,
.cart-notification-product .product-option {
    color: #000 !important;
}

I hope it would help you

that did work for the main text! thank you! the only thing i need overridded is the checkout button on that pop up, and the continue shopping on that pop up!

url to look: https://vtwz80uo1q7qw3l6-48114466969.shopifypreview.com

1 Like

Hi @abcerra1 ,

Sure, I’m happy to help you. Let’s try this solution:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/component-cart-notification.css->paste below code at the bottom of the file:

.cart-notification__links .button--primary {
   color: #000 !important;
}

I hope it would help you

thank you that worked for the checkout button!