Tagged: 

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

    Hi,
    Is it possible that when people look the website on a mobile device, the font (font-weight) is bolder?
    Regards Inosuwo

    #241723

    Hey intosuwo!

    You can use this on Quick CSS to change the font weight on mobile devices:

    @media only screen and (min-width: 768px) {
    body, body p {
    font-weight: bold;
    }
    }

    There are other texts or string that you might need to target specifically.

    Cheers!
    Ismael

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