Hello,
i 'm facing a weird problem with greek characters (Greek is the main language for my site).
Content written with greek letters gets compiled and rendered in html with the opposite of the default font-weight.
I have tried to force font-weight by using inline css in the .md files but that doesn’t work either for the greek characters.
I would love some help because as awsome as grav is, i can’t really write any content that
way.
PS. I 'm posting an image to help you understand the issue. Grav-font-problem-1
You can add the latin-extended characterset for each of the fonts your having issues with. For example, in the user/themes/antimatter/scss/template/_fonts.scss file:
For both of these approaches you will need to recompile your .scss into .css. To do this the easiest thing is to install SASS then run the .scss.sh file in the root of the antimatter theme folder.
Indeed the problem was with the (default) google fonts (Montserrat,Raleway,Inconsolata). Unfortunately these fonts don’t support the greek subset (2 of those actually don’t even have a latin extended subset) so Greek letters were being rendered with the next font which is helvetica.
Also thank you for explaining to me that i have (and how) to recompile the scss files!