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
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
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;
Angel95
September 12, 2023, 11:45am
3
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