• Hi could someone assist with changing my header fonts throughout the website to ‘Good Times’ and everything else to ‘Verdana’ I’m unable to do this through the theme so Im needing some help here to get this sorted. is it new code or adjusting existing. Any help on this is massivley appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You will need to modify the CSS by adding custom css under Appearance >> Customize.

    For the headers you will want to do something like this:

    h1, h2, h3, h4, h5, h6 {
    font-family: Good Times;
    }

    For everything else you will need to find what is being used throughout the site. The paragraph and link tags are being used but there may be others too so you will want to separate each tag by a comma like I did above and change the font family line. So it would look something like this:

    p, a {
    font-family: Verdana;
    }

    You can add tags to either one of those but make sure there is a comma after the preceding tag.

    Hope this helps.

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Good Times should be in quotes. ??

    To add CSS: If your theme has a custom CSS option, use that to add the CSS shown above. If not, install the plugin Simple Custom CSS. Or, if you have Jetpack installed, enable its Custom CSS module.

    Learn the Chrome Developer Tools to help you see and test changes to your CSS.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change font’ is closed to new replies.