Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey Jorgemuchacuar,

    You can do this a number of ways. But you need to either make sure it’s a font that is common to most browsers or you have imported the font into your website so that users will be able to access it when they visit your site.

    If it’s a google font you can import it through the css like this

    @import url(https://fonts.googleapis.com/css?family=<strong>font+name</strong>);

    Or you can add to the theme header under header.php, look for the other css stylesheets add it like this:

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

    After you have the font you can simply make all font’s with css:

    body {
      font-family: 'font-name' , sans-serif;
      font-size: 24px;
    }

    Hope this helps!

    Theme Author Richie KS

    (@rkcorp)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is it possible to change the body font’ is closed to new replies.