Reputation: 135
I have created a wordpress theme but I have a problem at mobile phones. The header is set 100% of the page and the main content is 980px and it is centered.
I need a fix so my header will be at least 20px left and 20px right wider than the main content.
Please see mydr.nl for html/css
What I need on mobile phones:
What I get on mobile phones:
Upvotes: 1
Views: 68
Reputation: 1284
Simply set a padding of 20 pixel to the left and the right of your wrapper class.
.wrapper {
margin: 0 auto;
width: 980px;
padding: 0 20px;
}
Upvotes: 3