Måske kan du bruge noget som dette.
Jeg har tilføjet noget til din CSS og brugt div - class - du kan selv arbejde videre med det.
.......................................
>HTML-doc
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Sikkerhedspakke til private.</title>
<meta name="Generator" content="Stone's WebWriter 4">
<meta http-equiv="Content-Language" content="da">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="wrapper">
<div class="logo" style="height: 60px;">
<div style="float: left; margin-left: 120px;">Logo Navn</div>
</div>
</div>
<div class="sidebar left" align="center" style="clear: both;">
<div class="subtitle">Links</div>
<div class="sidebaritem first"><a href="#">Det danske Haveselskab</a></div>
<div class="sidebaritem"><a href="#">De syv Haver</a></div>
</div>
<div class="sidebar right" align="center">
<div class="subtitle">Menu</div>
</div>
<div class="content padleft padright">
<p>Her kommer så din tekst
<br><br>
<div class="footer" style="clear: both;"> Copyright © 2005 visithaven.dk </div>
</body>
</html>
>og så den ændrede CSS
html,body {
height: 100%;
margin: 0px;
background: #5A85A8;
}
.main {
margin: 0px auto;
width: 100%;
height: auto;
background: #FFFFFF;
}
.logo {
width: auto;
height: 80px;
background: #FF00FF;
vertical-align: top;
}
.rightmenu {
width: 125px;
vertical-align: top;
}
.sidebar
{
width: 150px;
height: 600px;
background-color: #C7CFA7;
color: #C7CFA7;
font-weight: bold;
padding: 10px 0px 5px 0px;
}
.left
{
float: left;
}
.right
{
float: right;
}
.content
{
padding: 0px 20px 0px 20px;
font-size: 12px;
color: Black;
padding: 0px;
margin: 0px;
}
.content.padleft
{
padding-left: 180px;
}
.content.padright
{
padding-right: 180px;
}
.leftmenu {
width: 125px;
vertical-align: top;
}
.subtitle
{
color: #ffffff;
font-weight: bold;
font-size: 14px;
}
...................
~ibtage~