I’ve created a child theme of twentyeleven and have copied header.php and removed the following code from the file:
<meta name="viewport" content="width=device-width" />
Also, I’ve removed all styles (in style.css of twentyeleven) starting from:
/* =Responsive Structure
----------------------------------------------- */
@media (max-width: 800px) {
all the way down to just before:
/* =Print
----------------------------------------------- */
But still the page width is responsive on the site here and all elements overlay each other when you resize the browser window.
I don’t need the page to resize or any element to move when I resize the window or use a mobile/tablet browser.
Thanks!
You have
set in your style.css. Change this to
to set an explicit width and stop the page from resizing.