Dawn body text size in a section only- with section CSS

Topic summary

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:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the appropriate CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom of the file:
.rich-text__text.rte.scroll-trigger.animate--slide-in {
  font-size: 20px;
}
  • Save the changes

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.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

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."

https://94f34zafheke09v5-62277550319.shopifypreview.com

1 Like

Hi @Chantelrudden

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: