Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #190733

    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

    #190815

    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

    #191022

    Ismael, that is perfect! Thank you so much!! :)

    Damon

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Forcing Elements to Disappear?’ is closed to new replies.