How can I change the cart count item color in the Reach theme?

Hi,

we are using the “reach” theme and I was wondering how I can change the color of the cart-count-item to red:

At the moment it´s really hard to see and we need to highlight this a bit.

So I am using the Debut theme so not 100% sure this would work.

In my header.liquid file I have the following line, this displays the cart count. I figure you just need to apply the color here.

{{ cart.item_count }}

Thanks a lot @MikeLockwood

that´s smth I tried already and didn´t work :disappointed_face:

@Alicia_TNC

Please add the following code in your assets/theme.scss.liquid or theme.css or stylesheet.css file. Which is present in your assets folder.

@media screen and (max-width: 768px){
span.site-header-action-icon-cart-count { color: #000 !important; }
.site-header-action-icon-cart-count{ background: #fff !important; }
}

Hope this works.

Thanks!

awesome @dmwwebartisan .

this worked great. Thanks a lot!