Header Background Color and Font Color

Hi,

Can you let me know how to change the background color and font color for the header in the Shapely theme?

I’ve tried going through this path,
Admin Area -> Appearance -> Customize -> Shapely Options

But, there do not seem to be options readily available to customize this aspect.

Thank you for any help you can give me!

Hi,

Use this in Appearance -> Customize -> Additional CSS,

#site-navigation{
	background-color: #ff0000;
}
.menu li a{
	color: #ff0000;
}

change the #ff0000 according to your needs.

Let us know,

Thanks,
laranz.

Nice to find this piece of info but:
why its not configurable after a year of this post?
why i cant see whole code you sent in any of these browsers, edge, chrome, ffox? hitting F12 and looking into site code helping here…

Hey there

Stepe - sorry for late response but do you still need a hand here?
Here is the code form the code snippet, i guess part of it is covered by the vertical line, we will fix it soon,
Let me know if this code worked or if you need anything else

#site-navigation{
background-color: #ff0000;
}
.menu li a{
color: #ff0000;
}