web site does not cover full screen on 17" monitors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

New web site posted contains distorted graphics on 17" monitors and only
covers left three quarters of screen.
 
Thanks for the response. This is our new church web address <pipcusa.org>.
Please let me know if you can open and how it looks. Thanks again.

Bill S
 
Where are the distorted graphics?

When a page is built within fixed width tables, it will occupy the same
horizontal space on all screen sizes, all browser viewport widths, etc. If
you want the page to fill the viewport, then you need to make your
containers have a percent width, not a fixed width.
 
I'd recommend changing (in html view) the first line after the <body> tag to
this:

<table border="0" cellpadding="0" cellspacing="0" width="100%">

I think you can trash the height="1251" because content is going to
determine height.
 
Back
Top