Hi everyone,
There’s an option within any page where you can choose various header display options – which work just fine provided you’re not viewing on a mobile device. For example, on one page of our site we specify that the header be invisible until the visitor swipes. But on mobile the header shows up regardless. Is there a way (or a plug-in) to turn off the header display on mobile?
Hey James,
Would you like to hide header on pages where you chose to display header on scroll?
If so, please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
@media only screen and (max-width: 768px) {
#top .av_header_scrolldown.av_header_transparency {
display: none !important;
}}
Best regards,
Yigit
Yigit that’s perfect. Thank you!