Reputation: 91
Hi Im building a responsive site with media queries and Im having problems with the smart phone. When previewed there seems to be a 30px border left and right. I have tried to 0px & 0% all margin and padding but it wont go away. Please see screen shot here
http://optimise-website-marketing.com/wp-content/themes/bones/images/photo.PNG
heres the site:
http://optimise-website-marketing.com/
Im using the following media queries:
/* iPhone [portrait + landscape] */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
Any help much appreciated :-)
Im waiting so much time pulling my hair out here, please can anyone shed some light on whats happening?
Matt
Upvotes: 1
Views: 270
Reputation: 591
Line 1083 is the problem:
.page {
padding: 0 20px;
} /* general article on a page style */
Upvotes: 0