Reputation: 55
I am trying to solve an issue with Google WebFonts. I want to use font Signika from them. As you can see it has letters such as Š, Ů declared/implemented. On our website, however, it does not render these letters but just standard and in word DOMŮ - letter Ů is in another font and in word DALŠI letter Š in another font. Is there any solution for this? Should I declare some encoding for these types of letters, or where could the problem be?
Upvotes: 1
Views: 1857
Reputation: 21
If characters are implemented in the font file but your site can not display it you need to check if you are calling right subsets:
For example, to request the latin and latin-endended subsets of Oswald, the URL would be:
http://fonts.googleapis.com/css?family=Oswald&subset=latin,latin-ext
For more information:
https://developers.google.com/fonts/docs/getting_started#Subsets
Hope it helps.
Upvotes: 2
Reputation: 253
When i look at your website, i see both the words (and individual letters) you list as problematic in the font Signika.
I do notice however, that you are only calling for the Standard font set, and not the Laten-Extended Subset. On this page you may want to check the box Latin Extended (latin-ext)
and update your code if other browsers are experiencing problems.
Upvotes: 6