What am i doing rong here.
How can i get my footer so it goes below the content div.
And how do i center all the div's reltive to the stage?
<--- START OF CSS --->
body {
color: #3b551a;
font-family: Arial, Helvetica, sans-serif;
font-size: smaller;
scrollbar-3dlight-color:#3A5879;
scrollbar-arrow-color:#3A5879;
scrollbar-base-color:#7ABAFF;
scrollbar-darkshadow-color:#3A5879;
scrollbar-face-color:#7ABAFF;
scrollbar-highlight-color:#3A5879;
scrollbar-shadow-color:#3A5879;
}
a {
color: #3b551a;
}
a:visited {
color: #9cb259;
}
a:hover {
color: #68a0c5;
text-decoration: underline;
}
#header {
background-image:url(header.jpg);
height: 150px;
top: 0px;
position: absolute;
width: 750px;
outline-width: 0px
}
#body {
width: 750px;
background-color: #CC0033;
top: 150px;
position: absolute;
outline-width: 0px
}
#footer {
background-color:#59642C;
width: 750px;
bottom: 1px;
position: absolute;
outline-width: 0px
}
<--- END OF CSS --->
<--- START OF HTML --->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><?php page_title(); ?></title>
<meta http-equiv="Content-Type" content=
"text/html; charset=us-ascii; } else { echo 'utf-8'; }?>">
<meta name="description" content="<?php page_description(); ?>">
<meta name="keywords" content="<?php page_keywords(); ?>">
<link href="screen.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body style="margin: 1px; position: absolute;vertical-align: baseline">
<div id="header" style="position: absolute; text-align: center;"></div><br>
<div id="content" style="position: absolute; text-align: center; top: 153px">
this is the page content <?php page_content(1); ?>
</div><br>
<div id="footer" style="bottom: 1px; position: absolute; text-align: center">
this is the footer
</div>
</body>
</html>
<--- END OF HTML --->
HELP!