Main issue: Increase blog paragraph font size on mobile only (desktop remains 18px; desired mobile size 21px).
Working solution: Adding a CSS media query in theme.liquid before the closing tag. Code targets .Article__Body at max-width: 767px with font-size: 21px and line-height: 31px. The OP confirmed this fixed the mobile paragraph sizing.
Alternative that didn’t work: A suggestion to place a similar @media rule in theme.css (with 20px) did not work for the OP.
Follow-up request: Also increase the blog title size on mobile. Additional CSS (in the same mobile media query) targeted h1.Article__Title.Heading.u-h1 (set to 25px font-size and 35px line-height) and h3 headings within the article body. The OP confirmed this worked and slightly reduced the H1 size to preference.
Outcome: Resolved. Mobile typography (paragraphs and titles) updated via CSS media queries without affecting desktop; no further open questions noted.
Hi, I need some guidance on how to update the font size of the blog paragraph text for mobile only. I’m happy with the current settings for the desktop version.