Hello, I have transparent header with 2 menus on my site:
sirius.coma.lv/
However when on mobile my header has white background and language switcher from secondary menu becomes invisible due to white color. How to keep header transparent on mobile?
Hey vadikcoma,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 767px) {
#top #wrap_all .av_header_transparency {
background-color: transparent;
}
.responsive #top #main {
margin-top:-119px;
}
}
Best regards,
Vinay
it works, thanks!