Menu theme options has checkbox If checked the header will stick to the top of your site if user scrolls down (ignored on smartphones). Is there a way to NOT turn this off for smartphones? We want menu still available while scrolling…
Hey calnettech2,
Thank you for using Enfold.
You can try this css code but it’s not recommended because you will have to adjust lots of styles on mobile view. And a fixed header is quite unnecessary on mobile view because users can simply go back to the top of the page on tap.
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all #header {
position: fixed;
top: 0;
}
}
Best regards,
Ismael