Archived topic
Customizing Mobile Typography
1 reply · Started by Karl on August 20, 2017
Hope you can Help, I'm customising Body, changing the font size for mobile and then clicking desktop to make a change, but the result of the font size on either mobile or desktop is the last value I enter before saving and publishing.
I understand, there is actually no toggle for the body typography. What I am seeing is the toggle for the preview from WordPress.
Can we use CSS to set a specific font size for mobile? If so, could you let me know what CSS I should use please.
Many thanks
Karl
Hi Karl,
Thanks for opening a topic :)
Here you go:
@media (max-width: 768px) {
body {
font-size: 10px;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know.