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!
Hey Antonis,
Please try something like this instead:
<span style="font-size:14px;">Your text</span>
Best regards,
Rikard
Hello,
Thanks for the answer. I tired that but it has the same behaviour at mobile.
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