Hello
on the mobile version the text is displayed differently on iphone 8 and Galaxy s10.
How can I change this?
Thanks for the help!
Best regards Stefan
Hey sroetheli,
Thank you for the inquiry.
Looks like you are using a default font Arial and it is possible that this font is not supported or available on the mentioned devices. Have you tried selecting a different font?
Best regards,
Ismael
Hey Ismal
Thanks for the info.
Do you know what fonts are installed on Apple and Glaxy?
Best regards
Stefan
Hi Stefan,
We don’t have any details on that unfortunately. Maybe you could try searching for it online?
Best regards,
Rikard
Hi Rikard
Can I set CSS to show a font other than Arial on the mobile?
Best regard`s Stefan
Hi,
There’s no setting for that in the theme by default unfortunately, so you would have to use custom CSS like this for example:
@media only screen and (max-width: 767px) {
html * {
font-family: verdana;
}
}
This CSS will target all elements on your site, on mobile resolution.
Best regards,
Rikard