How to make dawn cart heading size smaller

Does anyone know how to change the heading sizes in the Dawn theme? the lowest setting is still way too big for the cart page. Can I change the size or add another heading type? ex. h3

Thanks!

1 Like

Hi @emilycoelho ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:

.shopify-section[id$="_cart-items"] h1 {
    font-size: 24px;
}

NOTE: You can change 24px to fit your website

I hope it would help you
Best regards,

Richard | PageFly

didnt seem to work :disappointed_face:

i dont believe dawn uses “h1” as a term

Hi @emilycoelho ,

In the cart page, Heading is currently h1. I don’t know if you are talking about that place?

If not, can you share the preview link and screen shot of the image location where you want to change the font size, so I can check it for you.

Best regards,

Richard | PageFly

whoops so sorry, i meant in the product page. i have attached a screenshot. I’d like to make “bracelet figaro” smaller

can i also center from bracelet figaro, price, quantity and the add cart button to the materials information?

Hi @emilycoelho ,

You can try below code in section-main-product.css file:

.product__info-container .product__title h1 {
    font-size: 24px !important;
}

I hope it would help you
Best regards,

Richard | PageFly

worked! thank you!