• Resolved cag8f

    (@cag8f)


    I’d like to change the font on my *entire* site to a single font. Is there a quick/easy non-plugin solution for this? Research indicates I might have to specify this font in more than one place (style.css, header.php, footer.php, etc). Is this correct, or can I specify this in one place and have it propagate through my site?

    Also, can anyone recommend easy/reliable plugin solutions for this? Bonus points if the plugin can handle a non-standard font (i.e. it can make use of @font-face).

Viewing 9 replies - 1 through 9 (of 9 total)
  • Changing fonts globally is fairly theme-dependent, but in general you can add them to body {} in your child theme or custom CSS plugin:

    body {
    font-family: "New Font", serif;
    }

    If your theme uses different fonts for headers, widget titles, etc., body {} probably won’t cover them. We can give more specific advice if we knew what theme you were using.

    As for your second question, this is the one I use, but it only handles Google fonts, so if that’s an issue for you, there are an extremely large number of other plugins available.

    Thread Starter cag8f

    (@cag8f)

    Thanks for the reply. Sorry I should have given this relevant info:

    Site: http://www.teflworld-koh-samui.com/test/
    Theme: Hemingway

    I am indeed using a child theme.

    As for your plugin, the font I desire (Myriad Pro Light) is not in the list of Google fonts, so maybe I will research another plugin, if the CSS edits prove to be too difficult.

    Thread Starter cag8f

    (@cag8f)

    OK I added your code, and it changed *most* elements. As you mentioned, there are elements it did not affect:

    page titles (I guess these are headers?)
    widget titles

    These fonts can be changed with CSS I assume? And for the future, if I had text in my header (or footer), how would I change those fonts? Can I just add similar code to my style.css:

    header {
    font-family: "New Font", serif;
    }

    Or do I have to modify header.php in some way?

    Thanks again.

    You can do:

    .page-title,
    .post-title,
    .widget-title {
    font-family: "New Font", serif;
    }
    Thread Starter cag8f

    (@cag8f)

    Great that works, thanks so much.

    But for the future, is there a way to accomplish this with one clean piece of CSS/code? Or is that perhaps a theme-dependent answer?

    It depends on how the author set up their CSS and also if the author uses different fonts for headers, body text, etc. You might benefit from learning how to use a web inspecting tool like Firebug. This is a good resource for doing so.

    Thread Starter cag8f

    (@cag8f)

    >> You might benefit from learning how to use a web inspecting tool like Firebug

    I use Chrome’s inspect element quite frequently, but not on a very advanced level. Firebug looks very similar to that. Can Firebug do things that Chrome’s inspect element cannot?

    I’m not very familiar with Chrome in general, but I doubt it. A lot of the information in the link I posted is applicable to all web inspecting tools in general.

    Thread Starter cag8f

    (@cag8f)

    Got it. Thanks again.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Easily change fonts for entire site?’ is closed to new replies.