• hi,
    I am using Polylang on my site and I have chosen a second language for it.
    I wanted to ask if you know where can I choose the font for that second language?
    is it related to the plugin or the template I have chosen?

    Thanks!

Viewing 1 replies (of 1 total)
  • the html will have an attribute based on the language (lang=”de-DE”) so you use that to change the font using css

    html[lang="de-DE"] body {
    font-family:someFont;
    }
    html[lang="da-DK"] body {
    font-family:someOtherFont;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change font of language’ is closed to new replies.