Title: Mobile device issue
Last modified: August 20, 2016

---

# Mobile device issue

 *  Resolved [RichardILD](https://wordpress.org/support/users/richardild/)
 * (@richardild)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/)
 * Hey,
 * Having a weird issue. I have the slideshow on the Home Page and it works fine
   on PC browsers, but on mobile devices the first slide displays, fades out and
   the subsequent slides don’t display. I’ve tried it on Android and iPhone, same
   result. Bit mystified.
 * [http://project10.tempoprojects.co.uk/](http://project10.tempoprojects.co.uk/)
 * Cheers,
 * Richard
 * [http://wordpress.org/extend/plugins/meteor-slides/](http://wordpress.org/extend/plugins/meteor-slides/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [davemhui](https://wordpress.org/support/users/davemhui/)
 * (@davemhui)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420765)
 * Is your theme mobile friendly ? What theme are you using on your website ?
    By
   the way, you can check for problems on mobile using GoMo meter provided by Google.
 *  Thread Starter [RichardILD](https://wordpress.org/support/users/richardild/)
 * (@richardild)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420768)
 * I built it using Reverie, so it’s definitely mobile friendly.
 * I’ll check it on GoMo, but if you have any other suggestions I’d be grateful.
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420825)
 * There’s something in the theme’s media queries that is causing the slideshow 
   to squish to 1px wide in Webkit browsers once hits that narrower query.
 * I think it is the box-sizing rule that is targeting all media:
 *     ```
       * {
       -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
       box-sizing: border-box;
       }
       ```
   
 * That’s a little extreme, you could try removing that, or overwriting it for the
   slideshow like this:
 *     ```
       .meteor-slides .mslide {
       -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
       box-sizing: border-box;
       }
       ```
   
 * I added this rule and I was able to get it to work at any width:
 *     ```
       .meteor-slides .mslide {
       width: 100% !important;
       }
       ```
   
 *  Thread Starter [RichardILD](https://wordpress.org/support/users/richardild/)
 * (@richardild)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420832)
 * Thanks a lot for taking a look, Josh. I’ll see if that sorts it out.
 *  Thread Starter [RichardILD](https://wordpress.org/support/users/richardild/)
 * (@richardild)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420833)
 * The width rule worked a treat, Josh. Nice find!
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420839)
 * No problem!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Mobile device issue’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/meteor-slides_0f131a.svg)
 * [Meteor Slides](https://wordpress.org/plugins/meteor-slides/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/meteor-slides/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/meteor-slides/)
 * [Active Topics](https://wordpress.org/support/plugin/meteor-slides/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/meteor-slides/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/meteor-slides/reviews/)

## Tags

 * [mobile](https://wordpress.org/support/topic-tag/mobile/)

 * 6 replies
 * 3 participants
 * Last reply from: [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/mobile-device-issue/#post-3420839)
 * Status: resolved