Forum Moderators: open
I'm not familiar with how Netscape Composer handles tables (which version are you using by the way?), but the gap you are probably seeing is due to the default margin on the
body element. You can fix this with CSS. I don't think Composer uses CSS much if at all, but if you view the source code you should see the opening
<BODY> tag. You need to change it to: <body [b]style="margin:0;padding:0;"[/b]> That should remove the margin and let your table be flush with the edges of the browser window. :)