Site seems to work good in all browsers, but is not centering on the Ipad.
this is the page
Any thoughts on how to fix this?
Thanks!!!
Site seems to work good in all browsers, but is not centering on the Ipad.
this is the page
Any thoughts on how to fix this?
Thanks!!!
you should use % and em for defining width you are using px.
you have width defined on the body by:
body
{
line-height:0;
min-width:1366px;
}
and many elements.
search for Media Queries
look at this
Decrease the size of your #container DIV to 800px.
Write like this:
body
{
line-height:0;
min-width:800px;
}
div#container{
width:800px;
}