Hi,
Im using the following command on my website to hide the transparent header on my homepage:
.home .av_header_transparency { display: none !important; }
Is there a possibility to modify the command so that it only effects dektop devices? Because I need the header on mobile devices to have a navigation on top of the page.
Thanks!
Hi cberentz!
Thank you for coming back.
You have to put the CSS in a media query like below and adjust the width:
@media only screen and (min-width: 989px) {
.home .av_header_transparency { display: none !important; }
}
Cheers!
Günter
Problem solved. I just used the option “header invisible and appears once user scrolls” instead of the command ;)
Thanks anyway