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.

Please update the code

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