Hi there,
I used the following code from the post (Sydney Thema Sticky Menu is missing in Mobile and Tablet Mode) here.
#masthead.site-header.fixed {
position: fixed !important;
background-color: rgba(0,0,0,0.9);
}
@media (max-width: 767px) {
.site-logo {
display: none;
}
.btn-menu {
margin-top: -20px;
}
body.home #masthead:not(.float-header) .site-logo {
display: inline;
}
body.home #masthead:not(.float-header) .btn-menu {
margin-top: 15px;
}
}
The code works so far, but the background color of the menu usually changes when scrolling. Unfortunately, this is canceled by the code. The URL to the sitte is www.braun-ms.de.
What do I have to change in the code so that I also have the color change of the background when scrolling in the Sticky Menu?
Thanks in advance.