Page 1 of 1

HTML page not extending 100% to the right and towards the bo

Posted: Wed Sep 23, 2009 1:05 am
by edawson003
HTML page not extending 100% to the right and towards the bottom. leaves about a 10 to 15 pixel gap from the right and bottom. If I hit refresh from the page the gap disappears. Any thoughts on how to fix that? I use to know many years ago, I just back on my web design hat and I am a little rusty. Thoughts?

my header and footer table are setup like this...plus more detail ofcourse.

Code: Select all

<table width="100%" height="100%"
border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="45%">&nbsp;</td>
    <td>&nbsp;</td>
    <td width="45%">&nbsp;</td>
  </tr>
</table>

Re: HTML page not extending 100% to the right and towards the bo

Posted: Wed Sep 23, 2009 3:22 am
by John Cartwright
Have you tried adding

Code: Select all

body {
   margin: 0;
   padding: 0;
}
.. to your stylesheet?

Re: HTML page not extending 100% to the right and towards the bo

Posted: Wed Sep 23, 2009 10:29 pm
by edawson003
just tried it. Didn't work. :(