Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #91173
    gaiabee
    Participant

    Hi there,

    I’ve installed the Easy Google Fonts Plugin, and I can see that this will allow me to change the fonts etc on the paragraph and headers 1-6.

    Now I’m wondering if there is a way to change the appearance of the page title, which becomes essentially the heading of the page.

    I’m not sure what the font and size is that shows up by default, but I’d like to be able to change the color and bold it… Is that possible?

    Thanks!

    #91226
    Mahesh
    Participant

    @gaiabee: This can be achieved with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #content .page .entry-header .entry-title {
        font-size: 35px;
        font-weight: bold;
        color: #ba4ba4;
    }

    Note: Default font-size for page title is 30px.
    Let me know if any problem.

    Regards,
    Mahesh

    #92526
    chukarnold
    Participant

    arnoldgenealogy.com
    I am having the same issue with page title fonts. I haave added the CSS in Mahaesh’s answer but it doesn’t work for me. If you look at any of my pages you will see that the titles hardly show up against my background.

    Here is what I added:
    #content .page .entry-header .entry-title {
    font-size: 35px;
    font-weight: bold;
    color: #000000;
    }

    Any help will be appreciated.

    #92538
    Mahesh
    Participant

    @chukarnold: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #content h2.entry-title a {
        color: #000;
        font-size: 35px;
        font-weight: bold;
    }

    If you do want to change the title’s color on hover, add the following CSS.

    #content h2.entry-title a:hover {
        color: #bbb;
    }

    Note: Please change the color hex value to your desired color.

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing Page Title font/look’ is closed to new replies.