I’m using the small fixed header, which currently has the right background color for what I’m trying to achieve.
However, when I scroll, the header minimizes and turns transparent. How can I change this so that when it minimizes, it retains its background color from when it’s large.
Hi erikkIsrael!
Add this on Quick CSS:
#header {
background-color: #4d3318;
}
.header_bg {
opacity: 1;
filter: alpha(opacity=100);
}
Cheers!
Ismael
Wonderful thank you very much!