I have been facing the same issue. My header was transparent but out of nowhere, it has a white background now. I had written a custom css for it as follows –
.nv-navbar {
height: 70px;
background: tranparent;
display: block;
position: absolute;
width: 100%;
z-index: 99999;
transition: all ease .5s;
}
I also tried this –
.nv-navbar {
background-color: rgba(255, 255, 255, 0);
}
Now the above css isn’t working and I’m unable to fix this issue. I am supposed to publish my site within 2 days and I don’t want this thing to delay it. Please help me out.