Not able to modify font size of rich text field

Topic summary

A user encountered an issue modifying the font size of a rich text field on a collection page footer. They attempted to reduce the font size from 15px to 13px using custom CSS in theme.liquid, targeting specific section and block classes. While the max-width property applied successfully (100%), the font-size remained at 15px despite the CSS rule.

Resolution:
The user resolved the issue independently by identifying they were using an incorrect template ID in their CSS selectors. Once corrected, the font size modification worked as intended.

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

Hi,

I am looking to reduce the font size to 13px for the content above the footer on the following page: https://www.zuri-craft.com/collections/wall-art

I have added the following code in theme.liquid, but while the width of the text is full page, the font size is still display as 15px

this is custom editing for Wall Plates Collection Page SEO Description

.section-template--17198363705634__047e444f-fbb9-4e68-aaf3-9aee23116aab-padding .rich-text__blocks { max-width: 100%; } .section-template--17170787631394__047e444f-fbb9-4e68-aaf3-9aee23116aab-padding .rich-text__blocks, .section-template--17170787631394__047e444f-fbb9-4e68-aaf3-9aee23116aab-padding .rich-text__blocks p{ font-size: 13px; }

Any help is appreciated

Got the solution. Was using incorrect template ID. No more help needed