Hello,
the Headlines in the listed blog-entries are to big in mobile.
Where can I make them smaller?
http://memento.deweryha.de/wp-content/uploads/2021/02/IMG_1818.png
Thanks
Monika
Hey Monika,
This CSS is causing that to happen:
h2 {
font-size: 3em !important;
}
I’m not sure exactly where it’s added though. Please try to remove the !important part of the code, or wrap it in a media query, if you don’t want it applying on mobile:
@media only screen and (min-width: 768px) {
h2 {
font-size: 3em;
}
}
Best regards,
Rikard