Dawn - Please help resize the subheaders

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:

  1. Go to: Online Store → Themes → Edit Code.

First Section (Eco Standards & Labels)

  • Open the file: section-rich-text.css
  • Find this code:
.rich-text__blocks * {
  overflow-wrap: break-word;
}
  • Directly below it, add:
.rich-text__blocks {
  font-size: 20px;
}
  • You can adjust the **20px** value to your preference.

Second Section

  • Open the file: section-image-banner.css
  • Find this code:
.banner__box .banner__heading + * {
  margin-top: 1rem;
}
  • Directly below it, add:
.banner__text.rte {
  font-size: 20px;
}
  • Again, feel free to modify the **20px** value as needed.

Let us know if you need further assistance!

1 Like

thank you!!