Trying to do the same thing (transparent and sticky header) for a development site:
https://wp.emthrace.org/
I tried this css (from another post here) but it doesn’t work when I activate header/footer builder. I tried the above class .bhfb-mobile but it still doesn’t work. Could you please help with the css syntax? thank you
@media only screen and (max-width: 991px) {
#masthead-mobile {
position: absolute;
top: 0;
width: 100%;
background-color: transparent;
}
.content-wrapper {
padding-top: 0;
margin-top: 0;
}
}
@media only screen and (max-width: 991px) {
#masthead-mobile > div {
position: sticky;
top: 0;
}
.sticky-header-active #masthead-mobile > div {
position: fixed;
background-color: #878371;
padding-bottom: 20px;
}
}