Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1133542

    Hi,
    is it possible to have different font sizes e. g. for the h2 headline for desktop and mobile versions? And where could I change it?
    Thanks,
    Veronika

    #1133832

    Hey Veronika,

    There are no theme settings for that unfortunately, but you can achieve it using CSS:

    @media only screen and (max-width: 767px) {
      h2 {
        font-size:20px !important;
      }
    }

    Best regards,
    Rikard

    #1134133

    thank you!

    #1134566

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Different font size for Desktop and mobile version’ is closed to new replies.