ARg! 2nd attempt at posting a reply...
There is an HTML-specific forum.. its under the 'web' category. Ok, that being said, here is a simple example of a liquid layout.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<style type='text/css' media='all'>
#body {
width: 100%;
}
#header {
background: gray;
border: 1px solid black;
margin: 1px 0px 1px 0px;
}
#menu {
width: 30%;
float: left;
background: gray;
border: 1px solid black;
}
#content {
margin-left: 30%;
background: gray;
border-top: 1px solid black;
border-bottom: 1px solid black;
border-right: 1px solid black;
border-left: 3px solid white;
}
#footer {
background: gray;
border: 1px solid black;
margin: 1px 0px 1px 0px;
clear: left;
}
</style>
</head>
<body>
<div id='body'>
<div id='header'>
test
</div>
<div id='menu'>
test
</div>
<div id='content'>
test
</div>
<div id='footer'>
test
</div>
</div>
</body>
</html>
I didn't dig into your code too deeply.. the above example uses a simple float to get the effect of side-by-side divs. This produces a liquid layout effect that works in both MSIE 6 and Mozilla Firefox. A strict Doctype is neccessary here to invoke standards mode, lest IE ignore or incorrectly render certain properties.
I did notice that your mark-up takes the approach of absolute positioning. If this is the way your really want to go with this then here is a decent article on that method:
http://www.mardiros.net/liquid-css-layouts.html
hth,
Rich
:::::::::::::::::::::::::::::::::
Smiling Souls
http://www.smilingsouls.net
:::::::::::::::::::::::::::::::::