Is it possible to have the mobile header transparent with no logo showing content underneath with just burger menu button to the right?
This is how it looks now:
Thanks
Hey fanlokbun,
Thank you for the inquiry.
You can use this css code to hide the logo on mobile view and make the header transparent.
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #top #wrap_all .av_header_transparency {
position: fixed;
background-color: transparent;
}
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg,
.responsive #top .logo {
display: none;
}
}
Best regards,
Ismael