• Hi all,

    I’ve just set up the free version of Make and I am LOVING it, so easy to use!

    One thing that I can’t work out, is how to change the color of the headings in posts and pages… currently there are black, I would like them to match the color I’m using for footer headings, the main menu, etc.

    My site is gourmethiker.com if you would like to look at it for reference.

    Thanks in advance!

    Jarratt Horton

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello,
    They already are the same. Are you talking about the font size? Maybe a screenshot will work better.

    BTW: If you want to remove theme branding, try this CSS.

    .site-info {
    display: none;
    }

    Thanks.

    Thread Starter horto15

    (@horto15)

    Sure thing, here is a screenshot:

    https://gourmethiker.com/wp-content/uploads/2016/01/Screen-Shot-2016-01-16-at-5.28.26-PM.png

    What I would like to be able to change (if it is possible) is the Post heading (h1 tag, h2, h3, etc) to be a different color than the post text. As you can see in this screenshot, the menu text is green, but the post heading is black.

    Hope that helps and thanks for the reply

    Hello,
    Try this CSS code.\

    h1 a, a h1, h2 a, a h2, h3 a, a h3, h4 a, a h4, h5 a, a h5, h6 a, a h6 {
    color: #33891b;
    }

    If you want to apply to all headings that are not links, this CSS should do it.
    `h1,h2,h3,h4,h5,h6 {
    color: #33891b;
    }

    Thanks.

    Thread Starter horto15

    (@horto15)

    Hi again,

    Thanks, that is great and has worked perfectly for the blog page(!) as you can see here:

    gourmethiker.com/blog

    Then when I click into a blog post, the heading remains black.

    Any ideas?

    If not, thank you for your help in solving this problem and I will be pushing forward, time to start creating content!

    Hello,
    My CSS code was wrong above to change the headings that were not links to the green color. Try this code instead.

    h1, h2, h3, h4, h5, h6 {
    color: #33891b;
    }

    You can safely IGNORE this CSS code.

    h1,h2,h3,h4,h5,h6 {
    color: #33891b;
    }`

    Thanks.

    Thread Starter horto15

    (@horto15)

    Thank you again, I have updated the CSS code and it is now working!

    Thank you for all your help, with what is only a minor (OCD) issue

    Jarratt

    Hello,
    Try this CSS code.

    .entry-title {
    color: #33891b;
    }

    This should accomplish your needs, let me know if you need anything else.
    Thanks.

    Thread Starter horto15

    (@horto15)

    Thank you again, I have updated the CSS code and it is now working!

    Thank you for all your help, with what is only a minor (OCD) issue.

    To be clear the CSS code that worked was:

    h1, h2, h3, h4, h5, h6 {
    color: #33891b;
    }

    Jarratt

    Hello,
    Glad everything is working.

    Thanks.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Change Font Color for headings on posts, pages’ is closed to new replies.