• Resolved toupstrey

    (@toupstrey)


    Hello everyone,

    I’m trying to change the font color of the “Page Title” that shows up on each page.
    For instance, on the site I’m working on, the Bio page has the word “Bio” before the page content begins. See here: https://alexandrabarbier.com/index.php/bio/.

    The word “Bio” just under the site Logo and Description is in grey and is too light to read (HTML color is #aaa).
    I have looked at the stylesheet.css and used CMD+f to find the CSS entry for this element but haven’t had any luck with getting it to change. I would like to change it from #aaa to #64A2D8 to match my menu item color.

    I have inspected that element using Safari and it looks like the class for that element is page-title.entry-title, but this is not in the CSS of the theme when I look for it. If it is, I haven’t been able to find an instance of #aaa that will change that word “Bio” (and all other Page Titles) to #64A2D8 when I replace it.
    Any help would be much appreciated!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The theme you are using has folder name hatchchild and theme name as HatchChild , but it’s not a child theme, it’s the Hatch theme itself with changed folder name and theme name. Also there are 2 of the same stylesheet loaded in the head.

    If you want to use a child theme, create a real child theme for it. If all you want to do is just CSS customizations, then use Custom CSS option if theme has one. If theme doesn’t come with Custom CSS option, use one of those Custom CSS plugins.

    This code will change the page title color

    .singular-page .entry-title { color: #ff0000; }
    Thread Starter toupstrey

    (@toupstrey)

    Thank you very much! The theme does allow for custom CSS, so I used the line you gave me and inserted my color. It worked and the problem is solved. I really appreciate your help.

    how do I change the site title color on individual post pages? My site title comes up the color I want on my posts page, but comes up black when I click on individual posts.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Page Title Font Color (On Pages, not in Menu)’ is closed to new replies.