Can we stretch the body of the text on a blog post to fit the whole screen?

QuestionsCategory: QuestionsCan we stretch the body of the text on a blog post to fit the whole screen?
Claire Shay asked 5 years ago

The body of a blog post just seems very big and too bulky to be read. Can this be fixed?

Attachments
2 Answers
Jennifer Staff answered 5 years ago

I feel the same exact way. I left it like that because Google wants it to be 18px for mobile readability. Personally I prefer much smaller text but to keep with the standards left it like that. What is your URL? I can send you code to shrink it to maybe 14px on mobile.

Jennifer Staff answered 5 years ago

Just saw the URL. You can add this to your additional CSS spot. Be sure to clear your hosting and browser cache after you add it.

@media only screen and (max-width: 600px) {
body,
body > div {
font-size: 1.4rem;
}
}

Claire Shay replied 5 years ago

Thank you! I’ll give that a shot.