Title: Mobile theme
Last modified: August 31, 2016

---

# Mobile theme

 *  [m8931](https://wordpress.org/support/users/m8931/)
 * (@m8931)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/mobile-theme-21/)
 * Hey Ben, as usual thanks for the great theme!
 * I just have a really basic question; how do you turn off and how do you edit 
   the Tracks Child mobile theme?
 * Thanks in advance!

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

 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/mobile-theme-21/#post-7170371)
 * Does the design look a lot different on mobile? If so, this is probably coming
   from a plugin. Jetpack in particular has a “mobile theme” module that can be 
   turned off to change this.
 * If that’s not it please share a link to your site, and I’ll check it out.
 * Thanks!
 *  Thread Starter [m8931](https://wordpress.org/support/users/m8931/)
 * (@m8931)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/mobile-theme-21/#post-7170399)
 * The website isn’t published yet so I can’t share it as of the moment. There is
   nothing inherently skewed or wrong with the mobile theme, it’s a perfectly fine,
   but I’ve been editing some functions and CSS of your theme and it’s caused the
   mobile theme to sort of go all over the place.
 * Because of my fiddling around I’d rather mobile users to just visit the full 
   site, unless I’m able to edit the mobile theme directly. Is there any way to 
   do this?
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/mobile-theme-21/#post-7170416)
 * If you have CSS changes that are affecting the site at mobile widths, you can
   wrap them in a media query, so they only affect wider screen widths.
 * For instance, let’s say you have this CSS making the site title extra large:
 *     ```
       .site-title {
         font-size: 67px;
       }
       ```
   
 * If you don’t want it to affect the site at mobile screen widths, you can wrap
   it in a media query like this:
 *     ```
       @media all and (min-width: 800px) {
   
         .site-title {
           font-size: 67px;
         }
       }
       ```
   
 * Now it won’t affect the site at all unless the screen is 800px or wider. Generally
   speaking, most mobile devices are around 320-600px wide, tablets 600-1000px, 
   and laptops/monitors 1000+.
 * Just to make sure we’re on the same page, the site should look like this on mobile
   devices: [http://pics.competethemes.com/451r1c3P370S](http://pics.competethemes.com/451r1c3P370S).
   If the design is different then this means a plugin is changing it.

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

The topic ‘Mobile theme’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/tracks/1.81/screenshot.png)
 * Tracks
 * [Support Threads](https://wordpress.org/support/theme/tracks/)
 * [Active Topics](https://wordpress.org/support/theme/tracks/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/tracks/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/tracks/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/mobile-theme-21/#post-7170416)
 * Status: not resolved