If you want to change font on your site, the best way is to find your font on Google Fonts. And choose “Quick-use” tool:
Then in Appearance > Theme Options > Code > Custom CSS add code from Google Fonts:
Then, you can globally change the font using ‘body’ selector:
1 2 3 |
body { font-family: 'Open Sans', sans-serif; } |
1 2 3 |
p.paragraph { font-family: 'Open Sans', sans-serif; } |