0

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!!!

sta hulja
  • 7
  • 1
  • 5
  • maybe edit in your css and some html, how you make the page so its easier to help. Nobody will go to your page, look up for source, download css and then try find a fix. – Tom Sep 20 '12 at 18:54

2 Answers2

0

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

Community
  • 1
  • 1
GajendraSinghParihar
  • 9,051
  • 11
  • 36
  • 64
0

Decrease the size of your #container DIV to 800px.

Write like this:

body 
{
     line-height:0;
     min-width:800px;
}
div#container{
 width:800px;
}
sandeep
  • 91,313
  • 23
  • 137
  • 155