Hi Christian,
Thanks. I changed it to WOFF2 and one weight only. Also turned off all caching.
Didn’t work. Meanwhile, here is some other info that may help:
When the font has been assigned in the builder, it works fine on both desktop and mobile.
However, in the instances where i have applied it with inline styling, is where it goes wrong on mobile. So the following works on desktop, but not on <span class="brandname">this is custom font</span>
This is kind of cumbersome, since i only want the brandname to have this custom font.
So let’s say i have a text that reads “this is an example text that has the brand name somewhere in the sentence” where my entire sentence should be body copy font, and only the brand name should be the custom font, i would ideally just apply the custom font only with the <span style='font-family:customfont'>brandname</span>
or <span class='brandname'>brandname</span>
. where obviously the css needs to be there.
It works if i do it like this: I take a text element in cornerstone, set the font for the entire text block to the custom font and then style the text inline as follows:
<span style='IBM Plex Sans'> This is an example sentence with the</span>brandname<span style='IBM Plex Sans'> somewhere in the sentence</span>
So i have a workaround now, but I think it is kind of strange that it doesn’t work the other way around, by just applying inline styling to the brandname only?