• Resolved kerrypolka

    (@kerrypolka)


    Is it possible to change the background colour of the header (the dark grey)? I’d like it to be the same white as the body background.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there!

    You could use CSS to adjust the color there. First, don’t edit the theme files directly, otherwise your changes will be overwritten every time the theme is updated to the latest version.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. Then go to Appearance > Edit CSS and paste it in there. (Alternatively, you could either install a standalone custom CSS plugin, or create a child theme.)

    Once you have your CSS editor or child theme to add your CSS, try this:

    #masthead, #masthead a {
    	background-color: #fff;
    	color: #000;
    }

    That will change the background color there to white (#fff) and the #000 makes the site title black, and can be changed to any color you’d like.

    Let me know if you have any questions or it gives you any trouble. (Be sure to share a link to your site so I can check it out directly. I tested this CSS on the demo.)

    Thread Starter kerrypolka

    (@kerrypolka)

    Oh perfect! That looks like it’s done it, thank you very much!

    The site is https://www.planestrainsandplantagenets.com/ so you can have a look, but it does look like I was hoping it to – thank you again for your help!

    You’re welcome! It looks great! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change header colour?’ is closed to new replies.