Title: Remove WordPress Responsive Design
Last modified: August 20, 2016

---

# Remove WordPress Responsive Design

 *  Resolved [pates](https://wordpress.org/support/users/pates/)
 * (@pates)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/)
 * I have scoured Google and it appears no one is asking this question.
 * My WordPress site changes completely depending on the size of the browser. I 
   am trying to disable this function and just keep the site exactly the same size
   no matter what browser.
 * I have no idea how to code a responsive design so at the moment the site gets
   completely butchered. I’ve tried deleting all this [@media](https://wordpress.org/support/users/media/)
   stuff but that seems to change nothing.
 * Any help here would be hugely appreciated.
 * Thanks,
 * Nick

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

 *  [Mark Ratledge](https://wordpress.org/support/users/songdogtech/)
 * (@songdogtech)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881226)
 * > I have no idea how to code a responsive design so at the moment the site gets
   > completely butchered.
 * Responsive means the site design resizes according to the browser window; best
   thing to do is look for a **non-responsive** theme: [http://wordpress.org/extend/themes/](http://wordpress.org/extend/themes/)
 *  Thread Starter [pates](https://wordpress.org/support/users/pates/)
 * (@pates)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881302)
 * I’ve coded my site and styled it from the twentyeleven theme. How do I scrap 
   the responsive browser size stuff – it’s just wrecking the site on anything mobile:
   S
 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881310)
 * what is the url for the site?
 * Really the only thing you need to do is set a set width…
    Since you are working
   with 2011 (I presume you’re not directly editing 2011, but rather a custom named
   theme or a child theme) all you need to adjust is:
 *     ```
       #page {
       	margin: 2em auto;
       	max-width: 1000px;
       }
       ```
   
 * and change it to
 *     ```
       #page {
       	margin: 2em auto;
       	width: 1000px;
       }
       ```
   
 * or whatever width you need
 *  Thread Starter [pates](https://wordpress.org/support/users/pates/)
 * (@pates)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881316)
 * Thanks Voodoo,
 * That’s sorted everything – brilliant!!
 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881324)
 * Excellent, I’m glad that worked out for you!!
 *  [Mark Ratledge](https://wordpress.org/support/users/songdogtech/)
 * (@songdogtech)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881342)
 * Interesting. I guess the max-width call is one of the basics of making a theme
   responsive?
 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881434)
 * Yep, that allows for the flexibility … up to the setpoint
 * SO with max-width 1000, 2011 can be any width, but stops at 1000px
 * that allows for all the percentage based flexibility to adapt.
 * But taking out that max width and changing it to a fixed width sets the display
   to be inflexible. The percentages still hold true, keeping the appropriate proportions
   that 2011 was designed for (at 1000px), just nothing adapts, and the media queries
   won’t happen anymore as there is a set width, we aren’t allowing a smaller display.
 *  Thread Starter [pates](https://wordpress.org/support/users/pates/)
 * (@pates)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881436)
 * Taking this max-width out was a seriously positive step. I think websites are
   perfectly navigable at full size and don’t need the width adjusted for mobiles
   and tablets. I’m sure a highly experienced coder would be able to make something
   pretty spectacular but for the average webmaster this just gets in the way.
 * Thanks again for clearing this up and teaching me a thing or two along the way
   😉
 *  [Saffron Avenue](https://wordpress.org/support/users/saffron-avenue/)
 * (@saffron-avenue)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881702)
 * I am using a genesis theme and need to remove the option of the responsive layout.
   Not really sure how to do it though?
 * I couldn’t find max-width anywhere in the child theme stylesheet?
 * THank you,
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881703)
 * I’m sorry but as you are using a commercial theme, you need to seek support from
   the theme’s vendors.
    [http://www.studiopress.com/support](http://www.studiopress.com/support)
 *  [Saffron Avenue](https://wordpress.org/support/users/saffron-avenue/)
 * (@saffron-avenue)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881704)
 * I’m trying there too, but thank you anyway!
 *  [hanzray](https://wordpress.org/support/users/hanzray/)
 * (@hanzray)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881778)
 * same for Genesis Framework..
 * `#wrap {width:960px;}`
 * and remove all viewport css.
 * note: Do this on child theme.

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

The topic ‘Remove WordPress Responsive Design’ is closed to new replies.

 * 12 replies
 * 6 participants
 * Last reply from: [hanzray](https://wordpress.org/support/users/hanzray/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/remove-wordpress-responsive-design/#post-2881778)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
