Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
hi! please help me how to resize these 2 subheaders below to be abit bigger
Shop URL - https://greenpaxstore.com/
Solved! Go to the solution
This is an accepted solution.
.rich-text__blocks * {
overflow-wrap: break-word;
}
.rich-text__blocks {
font-size: 20px;
}
.banner__box .banner__heading + * {
margin-top: 1rem;
}
.banner__text.rte {
font-size: 20px;
}
don't see the first one on your store, but based on the second one, I can provide a code snippet you can use:
You can adjust the 26px value as needed. Let me know if this helps!
This is an accepted solution.
.rich-text__blocks * {
overflow-wrap: break-word;
}
.rich-text__blocks {
font-size: 20px;
}
.banner__box .banner__heading + * {
margin-top: 1rem;
}
.banner__text.rte {
font-size: 20px;
}
thank you!!