• Hey there-

    I’ve read through several guides on how to change fonts. I ended up installing a plugin that allows you to change any of the body font to a Google Font, but I just can’t get the header or any other titles to change. For instance, the title of each of the three widgets on the home page won’t change. The main title- the word ‘Landscape’ in the theme demo- won’t change.

    I’ve created a google fonts set, added the code to my css sheet and all of that, I just can’t seem to get it to work.

    Does anyone have a handy step-by-step guide for this, or maybe a more detailed how-to? I’m a total beginner so if there’s a ‘changing fonts for dummies’ out there, that’s what I’m looking for.

    Thanks!

Viewing 1 replies (of 1 total)
  • You will probably need to target individual elements in the page.
    For example, this will change the font for the site title:

    .site-title a {
    font-family: cursive;
    }

    If you want the font to take over the whole site you can try:

    body {
    font-family: cursive !importatnt;
    }
Viewing 1 replies (of 1 total)

The topic ‘Help a beginner change fonts?’ is closed to new replies.