ich les es mir mal durch,
ich meinte meinen hadder.
also ich poste mal den html text.
<body>
<div id="container">
<div id="head">
<ul id="menu"></ul>
</div>
<div id="mainleft">
<div id="mainright">
<div id="footer">
</div>
</div>
</div>
</div>
so, du siehst, ich will in meinen container einen (hadder -> darein navigation), 2 hauptbereiche links und rechts und eine fußzeile.
mein problem ist jetzt, dass ich in meinen container den hadder rein hab, dann die mainboxen kommen und dann die fußzeile und die boxen nicht richtig angeordnet sind. es ist keine richtiges layout. die anordnung ist falsch. ich versteh nicht, wie ich innerhalb des containers meine bereiche anordnen kann.
der css text.
#container {
width:800px;
height:450px;
margin: auto;
background: white;
}
#head {
height:80px;
width:800px;
text-align:right;
padding:0;
overflow:hidden;
margin:0;
background-repeat: no-repeat;
background-image: url(img/hadder.png);
float:left;
}
#mainleft {
background-image: url(img/contentleft.png);
background-repeat: no-repeat;
width:400px;
height:310px;
float:left;
}
#mainright {
background-image: url(img/contentright.jpg);
background-repeat: no-repeat;
width:400px;
height:310px;
}
#footer {
float:left;
background-color: #FFF;
background-image: url(img/footer.png);
background-repeat: repeat;
width:800px;
height:50px;
}