I would like to increase body text size within a certain section with section CSS
the text" Explore intricate details and soft shades that bring emotions and stories to life."
A user wants to increase the font size of specific body text (“Explore intricate details and soft shades that bring emotions and stories to life.”) within a particular section using section-level CSS.
Proposed Solution:
.rich-text__text.rte.scroll-trigger.animate--slide-in {
font-size: 20px;
}
The solution targets the specific text element using its CSS class selector to apply a 20px font size. The discussion appears resolved with a working code snippet provided.
I would like to increase body text size within a certain section with section CSS
the text" Explore intricate details and soft shades that bring emotions and stories to life."
check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.rich-text__text.rte.scroll-trigger.animate--slide-in {
font-size: 20px;
}
And save.
Result: