Archived topic
Decrease font size of Blog post in Mobile view.
3 replies · Started by uche on December 21, 2017
Hello,
Please I would very much like to reduce the font size of my blog posts as it is currently large in size in Mobile view. It is very okay in desktop view. I would like each line of sentence of my published blogpost to be tinier thus making such line of sentence a bit longer than it is at present in Mobile view. I write with font size of 11 on MS word. Copying and pasting it in to wordpress and publishing it as a blogpost seem to increase the font size a great deal. Please do advice accordingly.
Thanks.
Hi there,
If I understand you correctly, you would like to reduce the body text size on mobile?
If so try this CSS:
@media (max-width: 768px) {
p {
font-size: 14px;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know.
Thanks for the recommended CSS. It's fair and good enough for me. Thanks again.
You're welcome :)