How to Change the Title Font in Suffusion Theme

I received a great question from a student therefore thought the answer may assist others. The question asked about the WordPress Suffusion Theme is:
“I want to change the font type and size for my header … (it’s called Georgia).  I thought to get around this I would make a jpeg or pdf with the title written in the preferred font and use this in my blog heading”.
First up, it is always preferable, for SEO reasons, to use text in place of images so we’ll concentrate on achieving the outcome with text rather than an image.

Use fonts for better WordPress designThe Suffusion Theme has more options than I have seen on any other Theme however there are still a few items that require a bit of CSS ‘massaging’. Fortunately Suffusion allows for embedded CSS to be included into the Theme options and without having to create a Child Theme.

Here is how to change the Title font in Suffusion:

  1. From the WordPress Dashboard go to ‘Appearance’ then ‘Suffusion Options’
  2. Click ‘Back-end settings’ -> ‘Custom Includes’
  3. In the ‘Custom Styles’ field enter:
    .blogtitle a {
    font-family:georgia,arial,serif;
    font-size: 150%;
    }
    .description {
    font-family:georgia,arial,serif;
    font-size: 150%;
    padding-top: 20px;
    }
  4. Save the Page

What this CSS is doing is first changing the Site Title (as assigned at ‘Settings’ -> ‘General’ -> ‘Site Title’)  text to Georgia then increasing its size. The Tagline (‘Settings’ -> ‘General’ -> ‘Tagline’) font family and size are then changed and the padding is increased so that the Title and Tagline font don’t overlap.

Just change the CSS to whatever your preference for the Ttile and Tagline and include any other CSS properties and values as necessary.