Title: Remove Mobile code
Last modified: August 21, 2016

---

# Remove Mobile code

 *  Resolved [webdirr](https://wordpress.org/support/users/webdirr/)
 * (@webdirr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/)
 * Hi.
    Want to have same layout on the website on the phone as it is at the web
   in the computer.
 * How do I turn off that mobile template?
    Want to have the original template on
   phones too =)

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

 *  Theme Author [Stefan Brechbuehl](https://wordpress.org/support/users/pixelstrolch/)
 * (@pixelstrolch)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660903)
 * Hi webdirr
    AlbinoMouse is responsive and doesn’t have desktop and mobile template
   files. The responsive styles are all at the end in the style.css stylesheet.
 *  Thread Starter [webdirr](https://wordpress.org/support/users/webdirr/)
 * (@webdirr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660923)
 * Ok. thx.
    do you know which one of the code to remove. tried like 6hours yesterday
   without any luck. 🙁
 * would estimated it =)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660925)
 * Download and install this [Custom CSS Manager plugin](http://wordpress.org/extend/plugins/custom-css-manager-plugin/)
   and enter this in its allocated section of the dashboard;
 *     ```
       @media only screen and (max-width: 970px) {
        #header-searchform {
         width: auto;
        }
       }
   
       @media only screen and (max-width: 480px) {
        .social-buttons > div,
        #footer1,
        #footer2,
        #footer3,
        #footer4 {
         width: auto;
        }
       }
   
       .container {
        min-width: initial;
        max-width: initial;
        width: 960px;
       }
   
       .sidebar-right #content {
        width: 600px;
        min-width: initial;
       }
       ```
   
 * That should take care of the basic formatting styles involved in the mobile theme,
   but there are other text styles too.
 * Look at the very bottom of [their stylesheet](http://wp-themes.com/wp-content/themes/albinomouse/style.css?ver=3.6-beta1-23970),
   look for the section “`@media only screen and (max-width: 480px)`“. Everything
   inside there not already overridden should be something you need to override.
 * Simply removing that section in the theme’s style.css file will only be temporary
   until the theme updates. When the theme updates, your changes will erase.
 * The Custom CSS Manager plugin should evade this. Alternatively use a Child Theme.
 *  Thread Starter [webdirr](https://wordpress.org/support/users/webdirr/)
 * (@webdirr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660927)
 * Or can I stay with the mobile css style.
    cause the problem with the site on 
   the mobilephone is that my nivo slider doesnt responsive. check the site here
   [http://www.ruskenopen.se](http://www.ruskenopen.se). check it on mobile and 
   computer. u see whats looks wrong.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660928)
 * Howabout using a repsonsive slider?
    [http://wordpress.org/extend/plugins/responsive-slider/](http://wordpress.org/extend/plugins/responsive-slider/)
   [http://wordpress.org/extend/plugins/search.php?q=responsive+slider](http://wordpress.org/extend/plugins/search.php?q=responsive+slider)
 *  Thread Starter [webdirr](https://wordpress.org/support/users/webdirr/)
 * (@webdirr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660929)
 * Yes, but can I write a custom code for my nivo slider in phone css style like
   using max-witdh?
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660930)
 * It’s harder than it looks because NivoSlider adds widths to images on-the-fly.
   Try your best by using `!important` on the end of your max width styles. Also
   try adding `width: auto !important;` .
 * If that doesn’t work, you’ll have to hack the plugin to find out where it’s setting
   the width in jQuery.
 *  Thread Starter [webdirr](https://wordpress.org/support/users/webdirr/)
 * (@webdirr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660936)
 * Than its easier to make the mobile css be like the computer css look? 😉
    if 
   you have time sometimes u can check it out if you want. would be great if it 
   is a function on this theme saying. mobile platform css style on and off. 🙂
 *  Theme Author [Stefan Brechbuehl](https://wordpress.org/support/users/pixelstrolch/)
 * (@pixelstrolch)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660946)
 * In my opinion it doesn’t make sense to overwrite all the responsive code.
    I 
   would try to make the width of the slider flexible. Perhaps it works with the
   aid of the id.
 *     ```
       #nivoslider-282 {
       width: auto!important;
       height: auto!important;
       }
       ```
   
 *  Thread Starter [webdirr](https://wordpress.org/support/users/webdirr/)
 * (@webdirr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3660975)
 * The last code worked!
    Used it in style.css! THX!
 * another question. When I use the website on the phone I get like a tab say “menu”.
   The menu is blue background and text color white. if i press this menu button
   a dropdown shows with my “posts-links”. But there is no background color on behind
   these texts. How do i put in same blue color in background to that too?
 *  Theme Author [Stefan Brechbuehl](https://wordpress.org/support/users/pixelstrolch/)
 * (@pixelstrolch)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3661006)
 * I would use something like this:
 *     ```
       .main-small-navigation {
           background-color: rgba(0, 85, 116, 0.6);
       }
       ```
   
 * I think the readability is ok except of the hover state. You should change the
   color of hover text, if you go for the suggestion above.

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

The topic ‘Remove Mobile code’ is closed to new replies.

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

 * 11 replies
 * 3 participants
 * Last reply from: [Stefan Brechbuehl](https://wordpress.org/support/users/pixelstrolch/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/remove-mobile-code/#post-3661006)
 * Status: resolved