I thought you wanted the header to stay white but the topbar to be transparent? I can see that you’re not using a topbar.
I think what you mean is you want the header to be transparent when at the top, but when you scroll is goes back white?
If so try this:
#header-section:before, #header .is-sticky .sticky-header, #header-section .is-sticky #main-nav.sticky-header {
background: transparent;
}
.header-shadow #header-section:before {
box-shadow: none;
}
.header-shadow #header-section {
box-shadow: none;
}
.sticky-header-resized {
background: #FFFFFF!important;
}
– Kyle