hi! please help me how to resize these 2 subheaders below to be abit bigger
Shop URL - https://greenpaxstore.com/
A user seeks help resizing two subheaders on their Shopify store using the Dawn theme. Screenshots show the elements needing adjustment.
Solutions Provided:
Two community members offer CSS-based fixes:
Quick solution: Add .banner__text.rte { font-size: 26px; } to adjust the second subheader, with customizable pixel values.
Detailed solution: Modify two CSS files:
section-rich-text.css: Add .rich-text__blocks { font-size: 20px; } below existing overflow code for the first section (Eco Standards & Labels)section-image-banner.css: Add .banner__text.rte { font-size: 20px; } below the banner heading margin code for the second sectionBoth approaches allow font size customization by adjusting pixel values.
Status: Resolved — the original poster confirms the solutions worked.
hi! please help me how to resize these 2 subheaders below to be abit bigger
Shop URL - https://greenpaxstore.com/
don’t see the first one on your store, but based on the second one, I can provide a code snippet you can use:
.banner__text.rte { font-size: 26px; }
You can adjust the 26px value as needed. Let me know if this helps!
Hello,
You’ll need to make some CSS adjustments. Follow these steps:
First Section (Eco Standards & Labels)
section-rich-text.css.rich-text__blocks * {
overflow-wrap: break-word;
}
.rich-text__blocks {
font-size: 20px;
}
**20px** value to your preference.Second Section
section-image-banner.css.banner__box .banner__heading + * {
margin-top: 1rem;
}
.banner__text.rte {
font-size: 20px;
}
**20px** value as needed.Let us know if you need further assistance!
thank you!!