Hej...
Ved ikke om det er noget lignede nedenstående du havde tænkt dig??
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"
http://www.w3.org/TR/html4/strict.dtd"> <html>
<head>
<title></title>
<style type="text/css">
#main_div {
width: 1100px; <!-- 960px + 20px + 120px -->
height: auto;
}
#left_div {
width: 960px;
height: auto;
float:left;
}
#right_div {
width: 120px;
height: auto;
float:right;
}
#header {
width: 960px;
height: 100px;
}
#navigation {
width: 960px;
height: 50px;
}
#content_div {
width: 960px;
height: auto;
}
#footer {
width: 960px;
height: 50px;
}
</style>
</head>
<body>
<div id="main_div">
<div id="left_div">
<div id="header">
<h1> Dette er headeren </h1>
</div>
<div id="navigation">
<p> Dette er navigation's baren </p>
</div>
<div id="content_div">
<p> Dette er her pladsen til dit indhold </p>
</div>
</div>
<div id="right_div">
<p>Dette er reklame søjlen </p>
</div>
</div>
<div id="footer">
<p> Her er din "Footer".. </p>
</div>
<body>
<html>
Håber det kan bruges!