XF 2.0 Google font

my forum presently uses:
Code:
<script src="//ajax.googleapis.com/ajax/libs/webfont/1.5.10/webfont.js"></script>
<script>
  WebFont.load({
    google: {
      families: ['{option}', 'Droid Serif']
    }
  });
</script><span style="font-family:{option};">{text}</span>
It's a little buggy but it works.
 
Add to PAGE_CONTAINER (or better helper_js_global):
HTML:
<link href="https://fonts.googleapis.com/css?family=your+family" rel="stylesheet">
Then go to /admin.php?styles/default-style.1/style-properties/group&group=fonts and add 'Your Familiy' to the areas you want at first position.
 
Top Bottom