Hello,
I have seen other themes force elements to disappear when at lower resolutions (mobile). For example, a full width map on the contact page will not display when viewing this contact page on a mobile device. Is there a way to do this with the Enfold theme too?
Many thanks!
Damon
Hi dcmalk!
Yes, it it doable. What elements are you trying to remove on mobile? You can use media queries. For example, ff you want to remove the header on mobile view you can do something like this on Quick CSS:
@media only screen and (max-width: 767px) {
#header {
display: none;
}
}
Regards,
Ismael
Ismael, that is perfect! Thank you so much!! :)
Damon