Title: Make completely separate mobile version?
Last modified: August 22, 2016

---

# Make completely separate mobile version?

 *  [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/)
 * Is there any way with Customizr to make a mobile version that only includes certain
   elements of my main website, in other words a very stripped-down version? Thanks.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/make-completely-separate-mobile-version/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/make-completely-separate-mobile-version/page/2/?output_format=md)

 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487258)
 * Let me rephrase: is there a way to make just one page/section of the mobile version
   of my site, not appear in mobile mode?
 *  [pirro70](https://wordpress.org/support/users/pirro70/)
 * (@pirro70)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487275)
 * you might try wp_is_mobile function in addition width is_page() hook
 *  [stellamaris5](https://wordpress.org/support/users/stellamaris5/)
 * (@stellamaris5)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487278)
 * I don’t think this is necessary in a fully responsive theme like Customizr but
   that’s just my opinion as I dislike mobile versions of sites.
 * Bear in mind screensizes for mobiles ar eincreasing so it may ‘not’ be an issues
   to have all content displayed. Maybe going down the App route may be a better
   option for you
 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487343)
 * stellamaris5, overall it works fine on mobile. But, I have a sitemap that I would
   like to disable on mobile, because it resizes, and the click zones are no longer
   accurate. Is there a way to just disable that on mobile?
 *  [stellamaris5](https://wordpress.org/support/users/stellamaris5/)
 * (@stellamaris5)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487353)
 * Link to site?
 * Oh, ok, so you want to hid one page for mobile, i think this can be done but 
   i dont know how to do this..someone soon will be able to assist
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487354)
 * [@stellamaris5](https://wordpress.org/support/users/stellamaris5/) has been giving
   you sound advice, but let me help if I can.
 * Need the site link to be able to see how to disable the sitemap.
 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487358)
 * Site is [http://www.millerfoodguide.com](http://www.millerfoodguide.com) and 
   the page I want hidden is [http://www.millerfoodguide.com/reviews-by-location-in-kunming](http://www.millerfoodguide.com/reviews-by-location-in-kunming)
   thank you.
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487359)
 * I can see a button Location that points at the Page. Would it be right to hide
   that button on mobile? Is that the only link to the Page?
 * If so, can you set an id on that button eg
    `<a href="http://www.millerfoodguide.
   com/?page_id=220" class="aio-blue" id="hideLocation" title="位置 Location">位置
   Location</a>`
 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487361)
 * rdellconsulting, brilliant! Yes, if I just hide the button, it will hide the 
   page. You are a genius!
 * As for the code you posted, what exactly would it do? Would it be possible to
   have that button hide only in mobile mode?
 * Again, thanks, and I look forward to your answer!
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487363)
 * Still on it. I’d have expected this to work but it doesn’t:
 *     ```
       @media all and (max-width:600px) {
       [title~="Location"] {
       display: none;
       }
       }
       ```
   
 * Still trying to find a way to uniquely identify that button
 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487364)
 * rdell thank you so much for your trouble and time. I am very excited about a 
   solution. You rock!
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487365)
 * OK, try this
 *     ```
       @media all and (max-width: 600px) {
       .aio-button-left a.aio-blue[href*="page_id=220"] {
       display: none;
       }
       }
       ```
   
 * You need to decide at what setting yo need the button to disappear (eg 979, 800,
   600 etc)
 * You’ll be back with one more question…
 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487393)
 * rdellconsulting haha, thank you. I understand what you mean now. I appreciate
   your help and time.
 *  Thread Starter [millerguide](https://wordpress.org/support/users/millerguide/)
 * (@millerguide)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487394)
 * Well, you were right about one last question. Ok your solution works great, and
   I really appreciate it: the button disappears on mobile.
 * One last thing is this: where the button was, is a blank space. Is there a way
   to make that blank space disappear so that the surrounding buttons are even again,
   or am I just asking too much? Thanks!
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/#post-5487400)
 * That was the question, and If I had a solution I would have given it yesterday!
   I’ve spent hours, and will continue to seek your solution! In the meantime, I
   hope the temporary solution suits you.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/make-completely-separate-mobile-version/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/make-completely-separate-mobile-version/page/2/?output_format=md)

The topic ‘Make completely separate mobile version?’ is closed to new replies.

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

 * 17 replies
 * 4 participants
 * Last reply from: [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/make-completely-separate-mobile-version/page/2/#post-5487439)
 * Status: not resolved