Hi,
I want a transparent header background on spedified sites on mobile view that works like on desktop view.
There are a lot of posts on this topic but nothing works on all the browser.
Best snippet seems to be:
@media only screen and (max-width: 767px) {
#top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {
background-color: transparent;
position: absolute!important;
}}
1) On Chrome working perfect on Firefox, Edge and IE it’s not working. Background is switching from transparent to white.
2) How do I get menu sticky?
3) Is it possible to make header smaller for mobile devices?
Linkt to site:
Thanks a lot for your helpt !
Greetings
Michael
Hey michaellausser,
Please change your code to following one
@media only screen and (max-width: 767px) {
#top #wrap_all .av_header_transparency {
background-color: transparent;
position: absolute!important;
}}
#advanced_menu_toggle {
position: fixed!important;
top: 100px;
right: 5px;
}
Also, i checked your website on Chrome, Firefox and Safari and header is transparent in all three. Have you figured it out already?
Best regards,
Yigit
Hi Yigit !
You got it !! Great !!! Your support is blowing me away :-)
Thanks a very lot !!
Greetings
Michael