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

    I want to use different font size inside text or html layers. I tried this <font size="6">This is some text!</font> but it doesn’t work correclty at mobile devices.

    Thank you!

    #708040

    Hey Antonis,

    Please try something like this instead:

    <span style="font-size:14px;">Your text</span>

    Best regards,
    Rikard

    #708143

    Hello,

    Thanks for the answer. I tired that but it has the same behaviour at mobile.

    #708566

    Hi,

    Ok, so you want to change it only for mobile? You can try something like this instead:

    <span class="my-class">Your text</span>

    And in Quick CSS:

    @media only screen and (max-width: 767px) {
    .my-class {
      font-size: 12px !important;
    }
    }

    If that doesn’t work then please post a link to your site.

    Best regards,
    Rikard

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