How can I change the notification color on my cart icon?

Hello,

I have question about cart icon color, when something is added to cart.

I would like the cart to stay white, but that little “notification” there to be red. Is this posssible?

Shop is https://godhyr.ee/

Thank you,

Godhyr

1 Like

@Godhyr

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.notification--promo a, .notification--success a {
    color: red !important;
}

Thanks!

@Godhyr

do you mean like this?

Yes, just like this. I´ll try.

Yes, I failed to clearify myself. Upper one is not the one I need. But yours, yes! :slightly_smiling_face:

@KetanKumar do you know how to get it to red?

Thanks

@Godhyr

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.site-header__cart-indicator { background-color: red !important;}

Thanks!

Thank you very much.