Change Background Color of Header
-
I am looking to see if it’s possible to change the background color of just the header. I am using the Stow theme with access to CSS coding. I can’t seem to figure it out. Here is what I have for the code so far:
.header {
background: #eaded4;
} -
It sort of works with
.site-header {
background-color: #eaded4 !important;
}But It only shows up as a thin bar and not as a filler
-
Hi there!
Try this code instead:
/* Header background*/ #masthead, #masthead .site-branding { background: #eaded4; }If that doesn’t help, please share the URL of the site you’re working on so we can have a closer look.
- The topic ‘Change Background Color of Header’ is closed to new replies.