Archived topic
body font-size in mobile?
1 reply · Started by cenk on February 9, 2020
Viewing posts 1–2 of 2
How can i change font size of body for mobile? There is no font-size option for body. There is in header options.
Hi there,
use this CSS:
@media ( max-width: 768px ) {
body {
font-size: 16px;
}
}
This archived topic is closed to new replies.