Viewing 1 replies (of 1 total)
  • Hi @susan-bates,

    You could use CSS media queries in order to hide your slideshow on mobile devices only.

    In case you’re not familiar with media queries: They’re queries that discover the width and type of device that a site is being viewed on. You can use them with CSS to change the way a site displays on different devices.

    The following CSS contains a media query that will hide your slideshow on devices that are 50em in width or less:

    @media screen and (max-width: 50em)  {
    .featured-content {
        display: none;
    }
    }

    Try adding the above snippet to your custom CSS and let me know how it goes.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Slideshow in Mobile View’ is closed to new replies.