View Single Post
Old 03-03-2003, 06:38 AM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,489
sde is on a distinguished road
first off you need a right margin ( maybe a bottommargin too ) parameter in your body tag:

PHP Code:
<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0"
then to stretch the table across allthe way, you need to define the table width as '100%'

a table can only be as wide as the table it is inside .. so you might have to define your very first table as 100%

PHP Code:
<table width="100%" border="0" cellpadding="0" cellspacing="0"
if this doesn't work, let me know .. i can look into it further later.

your page design/layout looks excellent btw
sde is offline   Reply With Quote