I believe the area I want to change the color of is called the shrinking header ( as it changes once the site is scrolled down)
I found this CSS code, but it only changes the right area of the header around the menu. I want to change all of it. (Optimally to be transparent like it is before the scroll down)
/* Main menu on shrinking header */
#top #wrap_all #header.header-scrolled-full .main_menu {
background:gold;
}
Hey tycho4511,
To change the header to transparent full time, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.header_color .container_wrap_meta {
background: rgba(255,255,255,0) !important;
}
.header_color .header_bg {
opacity: 0.3 !important;
}
Feel free to change the “0.3” to “0” for completely transparent.
Best regards,
Mike
Great, that works! Thanks so much.
Tom