-
AuthorPosts
-
April 3, 2014 at 9:07 pm #247214
Hello.
I have main huge problem with letters from my alphabet, I can’t go on before I solve it.On the page:
– Menu
– Heading section
– You are Here – bar
polish characters are missing


Text in the body is ok, but missing letters are frustrating!This is my alphabet
http://en.wikipedia.org/wiki/Polish_alphabetHelp me solve this problem (change font or something)
April 3, 2014 at 11:00 pm #247232Hey magicznechwile!
Please try adding Latin extended subset. See Peter`s post here – https://kriesi.at/support/topic/add-a-new-custom-font/#post-212124
Regards,
YigitApril 4, 2014 at 9:36 am #247351Before I’ve tried Peter’s way I’ve tried to add a google font to the theme (Found font with all my special letters). Didn’t work.
I’ve chosen “Arimo”
http://www.google.com/fonts/specimen/ArimoWhat exacly code and where I should add to the functions.php to see Arimo font on the list in the Styling options (Heading font)?
If I pass this I will try to add latin subset.Explain me please (in points) how to add google font Your template. (I’m not to smart in php,css etc.)
-
This reply was modified 11 years, 7 months ago by
magicznechwile.
April 6, 2014 at 2:09 pm #247906This reply has been marked as private.April 7, 2014 at 4:05 pm #248254Hi!
You can simply add the code Peter provided to functions.php file below following line
global $avia_config;as following
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Arimo'] = 'Arimo:400,700,400italic,700italic&subset=latin,latin-ext'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Arimo'] = 'Arimo:400,700,400italic,700italic&subset=latin,latin-ext'; return $fonts; }Best regards,
Yigit -
This reply was modified 11 years, 7 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.
