How to change color of price in cart page

how do i change the color of my price in thee shopping cart?

url: bundo.nl

I want to change the color of the price next to the old price to #03b77a

tnx

To do this you can try going to your:
Cart Template> Cart Items> Custom CSS

Then Add this code and click “Save”:

.price {
  color: #03b77a;
}
.cart-item__old-price {color: inherit;}
}

Example:

However, I do not see the discounts being shown in the cart when I checked a few products.

I hope that works for you,
@biznazz101

That worked. Do you know how I can make the cart page show the compare price too? So the discount is more “visible”? tnx!