Archived topic
H3 - H6 in mobile view
1 reply · Started by Gillian on March 26, 2018
Viewing posts 1–2 of 2
Is there a way I can set the font size for H3 - H6 when in mobile view?
Thanks
Hi there,
Try this CSS:
@media (max-width: 768px) {
h3 {
font-size: 20px;
}
h4 {
font-size: 15px;
}
h5 {
font-size: 10px;
}
h6 {
font-size: 10px;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
This archived topic is closed to new replies.