Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1279517

    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

    #1279905

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.