Hello, I am trying to change the background color of my blog global header. I have checked the designer tools, and the CSS style sheets but I cannot find it. You can see it here the header nav with the logo is some random color that I can seem to change. Please help! Thanks! https://blog.ampersandpro.com/?hs_preview=KCHwxtWq-69843627563
To change the header for you website, you need to target your header element with css.
When I look at your link it looks like you need to target the following:
.header{
background-color: red;
}
I see there is an inline css that defines your background already. So also check your site theme if there are any options to setup the background for the header. You can find this at: Settings -> Tools -> Website -> Themes -> View theme
Indra Pinsel - Front-end developer - Bright Digital ✅ Did my answer solve your issue? Help the community by marking it as the solution.
To change the header for you website, you need to target your header element with css.
When I look at your link it looks like you need to target the following:
.header{
background-color: red;
}
I see there is an inline css that defines your background already. So also check your site theme if there are any options to setup the background for the header. You can find this at: Settings -> Tools -> Website -> Themes -> View theme
Indra Pinsel - Front-end developer - Bright Digital ✅ Did my answer solve your issue? Help the community by marking it as the solution.