MyBB Community Forums

Full Version: Add Google Fonts to MyBB default theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I'm not quite sure how to add Google fonts to MyBB...(default theme) I have the Google Font codes but I just don't know where to put them using the CSS/Code editor. Additionally It would be nice to know how to edit other themes too. Thank you!

@import url(https://fonts.googleapis.com/css?family=Lora);


<script type="text/javascript">
  WebFontConfig = {
    google: { families: [ 'Lora::latin' ] }
  };
  (function() {
    var wf = document.createElement('script');
    wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
      '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })(); </script>

<link href='https://fonts.googleapis.com/css?family=Lora' rel='stylesheet' type='text/css'>

font-family: 'Lora', serif;
Simply use


@import url(https://fonts.googleapis.com/css?family=Lora);

.body {
font-family: 'Lora', serif;
}


in whichever css sheet that is being called for theme / page style. I guess in global.min.css
Thanks.  Smile
You are welcome Smile