Archived topic
h1 too big in mobile view
3 replies · Started by Iván on April 24, 2018
Viewing posts 1–4 of 4
Hi Leo,
I find that h1, h2, etc are too big in tablet and mobile view. ¿Is there a way of making them smaller?
Hi there,
For mobile:
@media (max-width: 768px) {
h1 {
font-size: 15px;
}
}
For tablet:
@media (min-width: 769px) and (max-width: 1024px) {
h1 {
font-size: 17px;
}
}
More info here: https://docs.generatepress.com/article/responsive-display/
Adding CSS: https://docs.generatepress.com/article/adding-css/
Thank you, Leo!!
No problem!
This archived topic is closed to new replies.