Archived topic
Separate font size in mobile and desktop view
1 reply · Started by vanya on May 31, 2020
Viewing posts 1–2 of 2
I have tried searching solution for this topic but I couldn't fit anything working.
I don't understand what is inline
I need separate font size on mobile and desktop view for body of the content
Please help me with code
Hi there,
You can:
1. Set your body font size in the Customizer.
2. Set your body font size for mobile with some CSS:
@media (max-width: 768px) {
body {
font-size: 17px;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
This archived topic is closed to new replies.