I have a website located at the following URL:
Currently, I have set the viewports as follows:
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" />
When viewing it on my iPad in landscape mode, everything looks great. However, on my iPhone, all the elements appear too large and on landscape, it's a bit wider than desired... Could this issue be related to the viewports settings or should I consider adding a media query to adjust the layout of my CSS page wrapper?
.contentPowell {
background-color: #FFF;
width: 1024px;
min-height: 300px;
margin: 0 auto;
box-shadow: 12px 0 15px -4px #888, -12px 0 8px -4px #888;
position: relative;
z-index: 999999;
padding-bottom: 30px;
}
What about the footer section?
.footerPowell{
width:1024px;
}