asi quedaria perfecto mira: (obviamente las medidas que yo puse son de ejemplo)
HTML Código PHP:
<div id="wrapper">
<div id="header"></div>
<div id="navigation"></div>
<div id="content"></div>
<div id="linklist"></div>
<div id="footer"></div>
</div>
CSS
Código:
#wrapper{
width:960px;
height:auto;
margin: 0 auto;
}
#header{
width:960px;
height:200px;
background-color:red;
float:red;
}
#navigation{
width:200px;
height:500px;
background-color:green;
float:left;
}
#content{
width:560px;
height:400px;
background-color:grey;
float:left;
}
#linklist{
width:200px;
height:500px;
background-color:green;
float:left;
}
#footer{
width:560px;
height:100px;
background-color:pink;
float:left;
margin-left:200px;
margin-top:-100px;
}
saludos ! exitos!