• Resolved genebrodejr

    (@genebrodejr)


    I am long familiar with WP.com editing but brand new to www.ads-software.com. My site is genebrodejr.com and I am using the plugin Easy Google Fonts to change my site fonts. When I changed the H1-H6 heading fonts I found that my header did not change.

    I have never used CSS before. Is there a plugin that will allow me to keep this simple and, if not, is there a simple/safe way for me to edit the CSS without messing things up?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    If you are using the latest version of WordPress, you can add custom css to your site in the customizer.

    Here are some examples of css snippets you could possibly use.

    The css below would change the size and colour of h2s inside the content area on pages and posts. You can change the h2 in the css to whatever you wish to target instead (like h3 or h4). The # colour value can be changed to suit your needs, so too can the font-family

    .entry-content h2 {
        font-size: 40px;
        color: #f66666;
        font-family: arial;
    }

    This css would change the font-size and colour of post titles on exceprts on the static home page (under “recent posts in the demo):

    .entry-title {
        color: #f66666;
        font-size: 32px;
    }

    The css below would change the titles on single posts and pages:

    .singular .entry-title {
        color: #f6f6f6;
        font-size: 38px;
    }

    Hi genebrodejr,

    I am using the plugin Easy Google Fonts to change my site fonts. When I changed the H1-H6 heading fonts I found that my header did not change.

    If Easy Google Fonts isn’t working as expected, I’d recommend making a post over in that plugin’s support forum to see if the folks there have any tips on getting it to work on your site.

    I did test it with Ixion on a fresh install, and it worked, but there might be something on your site causing a conflict with that particular plugin. If you make a post in the plugin’s forum, either its developers or another user might be able to assist you with troubleshooting.

    Thread Starter genebrodejr

    (@genebrodejr)

    Thanks @gary-barrett, I will have to do some more reading on adding CSS via the customizer. I’ve got the option to edit CSS but I don’t know how to use it yet.

    Thread Starter genebrodejr

    (@genebrodejr)

    @dcoleonline your example didn’t change the title, which is what I was referring to as the header. I got the same results as in your example. I’ll try over at the plugin’s support page. Thanks for the link!

    Moderator Kathryn Presner

    (@zoonini)

    Looks like you got this sorted with:

    .site-title, .site-description {
      font-family: cinzel;
    }

    I’ll mark this thread as resolved but feel free to start a new one if you need help with anything else.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to edit font size, color, etc., in heading’ is closed to new replies.