Archived topic
Setting Responsive Font Sizes
1 reply · Started by colt0356 on November 16, 2019
Viewing posts 1–2 of 2
Im trying to set the font size different for mobile and desktop in BODY but there is no option to set them according to the device. But the option is there for HEADINGS...
How come there is no responsive setting for body?
Hi there,
Try this CSS for mobile:
@media (max-width: 768px) {
body {
font-size: 10px;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
This archived topic is closed to new replies.