Title: Loop only on mobile
Last modified: June 26, 2018

---

# Loop only on mobile

 *  [IktanStudio](https://wordpress.org/support/users/iktanstudio/)
 * (@iktanstudio)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/loop-only-on-mobile/)
 * Hello! is it possible to make the carousel loop only on mobile? or make it automatically
   slide only on mobile?
 * Thank you!!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Floop-only-on-mobile%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * (@simonpedge)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/loop-only-on-mobile/#post-10439034)
 * No this is not possible within a single SA slider.
 * The only way I can think of to achieve this would be to:
    – create 2 identical
   sliders (you can use the excellent ‘Duplicate Page’ plugin to duplicate your 
   slider), – make sure that both sliders have a different CSS ID – insert both 
   sliders into your page – use some CSS Media Queries to display 1 slider above
   a certain screen width, and display the other slider under a certain screen width.
 * So your CSS might look like this:
 *     ```
       #slider_desktop { display:block !important; }
       #slider_mobile { display:none !important; }
       @media screen and (max-width: 767px) {
       	#slider_desktop { display:none !important; }
       	#slider_mobile { display:block !important; }
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Loop only on mobile’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/slide-anything.svg)
 * [Slide Anything - Responsive Content / HTML Slider and Carousel](https://wordpress.org/plugins/slide-anything/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slide-anything/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slide-anything/)
 * [Active Topics](https://wordpress.org/support/plugin/slide-anything/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slide-anything/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slide-anything/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * Last activity: [7 years, 11 months ago](https://wordpress.org/support/topic/loop-only-on-mobile/#post-10439034)
 * Status: not resolved