Dawn 7.0 Blog post paragraph font too small

Topic summary

A user needed help increasing the font size of blog post paragraphs in their Dawn 7.0 theme.

Solution provided:

  • Navigate to Online Store β†’ Theme β†’ Edit code
  • Open the base.css file
  • Add custom CSS targeting the article template paragraph elements

Implementation:

  • Initial code snippet increased font size for some elements but not all
  • A revised CSS rule was provided to target additional elements (paragraphs, spans, and list items within the article template)
  • The updated code successfully resolved the issue

Status: Resolved - the user confirmed the solution worked after applying the second CSS snippet.

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

Hello,

Just wondering how to increase the size of my blog post paragraph font?

Thanks for any help.

Follow these steps:

  1. Go to Online Store β†’ Theme β†’ Edit code

  2. Open your base.css file and paste the following code at the bottom:

.article-template p {
    font-size: 2rem !important;
}

Copy

Thanks

Ok that worked for part of it, but not all.

Here’s a photo of what it looks like now.

Please update the code

.article-template p, .article-template span, .article-template li {
    font-size: 2rem!important;
}
1 Like

Thanks that worked like a charm!

1 Like