
November 25th, 2004
03:53 AM
Width Problem
http://www.sonicletm.com/hosting/
On the site I recently coded using Dreamweaver I ran into a problem where the site doesn't strech to the bottom as intended to. It cuts off right at the end.
Can someone view the source and tell me whats up with it?
Thanks
Last edited by Stompy, November 26th, 2004 05:16 AM (Edited 1 times)

November 25th, 2004
12:37 PM
<body bgcolor="#FEFEFE" text="#000000" topmargin="0" bottommargin0><center>
<table width="632" border="0" cellspacing="0" cellpadding="0" [b]height="38%"[/b]>
your container table has a height of 38%, that could be a problem

November 25th, 2004
12:54 PM
23, mother, art slave, code monkey
Status: Offline!
It has nothing to do with that.
Change
<body bgcolor="#FEFEFE" text="#000000" topmargin="0" [b]bottommargin0[/b]><center>
to
<body bgcolor="#FEFEFE" text="#000000" topmargin="0" [b]bottommargin="0"[/b]><center>
I found that roughly around line 7 in my editor.
___________________
And the sig ran away with the spoon.

November 25th, 2004
01:07 PM
Neverside Newbie
Status: Offline!
Hrm...why not just use CSS?
From:
<body bgcolor="#FEFEFE" text="#000000" topmargin="0" bottommargin="0"><center>
to
body {
background: #fefefe;
color: #000;
margin: 0 auto;
width: 632px;
}
___________________
Tables for layout is an abuse. -- Internet Explorer is unsafe.

November 26th, 2004
12:46 AM
Thanks for the replies, I got that problem solved but have bumped into a new one.
http://www.sonicletm.com/hosting
As you can see all the middle stuff has been aligned to center and the blue navigation doesn't strech down.
Help?

November 29th, 2004
01:03 PM
23, mother, art slave, code monkey
Status: Offline!
Holy crap that's a lot of table code.=omg
___________________
And the sig ran away with the spoon.