change text color of page title/header, oxygen theme

  • Unknown's avatar

    On my main pages e.g. ABOUT, RESEARCH etc … I’d like to change the text color. (it is now grey but should be white on orange background).
    iv’e tried e.g.
    .entry-header > h1
    .entry-header h1.entry-title
    .entry-title

    but still grey.

    best, Emilie

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello there,

    This should do it instead:

    body.page .type-page .entry-title,
    .not-found .entry-title, .page-title {
        color: #fff;
    }

    In case you’re wondering (skip this if you aren’t), your code was actually correct but it lost specificity to another CSS code for the title, so it didn’t get applied.

    ‘body.page .type-page .entry-title’ is the targeting that works here, but I also included ‘.not-found .entry-title, .page-title ‘, for the title styling on the 404 page.

  • The topic ‘change text color of page title/header, oxygen theme’ is closed to new replies.