How can I make the subtotal and discount more visible on my cart page?

Hi!

URL is www.daughterofanangel.com

When adding a product to the cart and going to check out, I want the SUBTOTAL and price showing the discount to be bigger or in BOLD font or a different color so it’s easy for customers to see their automatic discount was applied.. is there anyway to do this?

Thanks in advance!

hello @jennarose I see you are using Dawn theme by shopify.

You can add code by following these steps to make subtotal bold and different color

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code at the end of theme.liquid

.totals__subtotal-value{ font-weight:900; } .cart__footer .discounts { color: #ec4040;/* you can change color code here*/ font-weight: 800;

Hello,

yes for that we need to add the custom css for that.

li.discounts__discount.discounts__discount–position {
font-size: 15px;

font-weight: bold;

}
h2.totals__subtotal {
font-size: 25px;
font-weight: bold;
}
Please keep this two css base.css file

Let me know if you face any issues