• I want to change the font and colour of the page title that shows up in the single-column format.

    I’ve changed the CSS (pasted into additional) to this:
    .page .panel-content .entry-title,
    .page-title,
    body.page:not(.twentyseventeen-front-page) .entry-title {
    color: #0059b3;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    }
    But this only affects the size and weight. The colour is ignored. Where can I change the actual font and its colour?

    Is there any way to remove the page-title completely? I’d rather use H1 or H2 lines in the actual post.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try:

    
    .colors-custom .page .panel-content .entry-title {
        color: pink;
    }
    

    https://codex.www.ads-software.com/CSS#Custom_CSS_in_WordPress

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is there any way to remove the page-title completely? I’d rather use H1 or H2 lines in the actual post.

    Try:

    
    .group-blog .entry-header {
        display: none;
    }
    
    Thread Starter ichadwick

    (@ichadwick)

    Thanks, but neither affect the page-title – at least on pages (including the static first). The page-title still shows on every page, same colour as before.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Where are you putting that CSS? I can’t find it on your site.

    Thread Starter ichadwick

    (@ichadwick)

    Additional CSS in customize section.

    I added display: none; under body.page:not(.twentyseventeen-front-page) .entry-title and that shuts it off.

    The colour remains the same, however.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you view the source code of your webpage, the custom CSS starts on line #739: view-source:https://omwa.org/water3/

    The code I’m recommending isn’t in that section, so that makes more sense why it isn’t applying.

    Triple check you’re adding the style in the “Additional CSS” part of the dashboard: https://codex.www.ads-software.com/CSS#Custom_CSS_in_WordPress

    If still the issue persists then check with your hosting providers if they’re caching your site.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change font and colour in page title’ is closed to new replies.