• Hello Everyone,

    I am setting up my first wordpress site using the School Zone theme. Can anyone please suggest an additional CSS code to help me change the title font size and colour on each page please?

    For example, in the ‘About us’ page here: [ redundant link removed ]
    The ‘About us’ is in large black text. I would like to reduce the size to around Header 2 and colour to RGB 255, 105, 0.

    Many thanks.

    • This topic was modified 4 years, 11 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @butterflybabyclinic!

    Great work on your first WordPress site!

    In terms of custom CSS, you’re most likely looking for the CSS selector .page-header .page-title.

    You can try the following code to change the page title (please note this will change all page titles):

    .page-header .page-title {
        color: rgb(255, 105, 0);
        font-size: 38px;
    }

    To change the font size, you can change the font-size attribute above.

    Let us know if it helps!

    Warm regards

    You should ask in your theme’s support forum, since the author knows the code best, and it might be different on different pages. Also, your question can inspire new options for the theme, and help all of the users instead of just you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Additional CSS code to change font size and colour in page titles’ is closed to new replies.