Wydaje mi sie ze o taki uklad Ci chodzilo
Troche tylko kolory pozmienialem, zeby bylo latwiej nad tym zapanowac

Kod:
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/css.css" />
</head>
<body>
<div align="center">
<div id="logo">
</div>
<div id="menutop">
</div>
<div id="main">
<div id="borderleft">
</div>
<div id="menuleft">
</div>
<div id="middle">
</div>
<div id="borderright">
</div>
<div id="bottom">
</div>
</div>
</div>
</body>
<html>
Kod:
body {
background-color:#000000;
background-image:url(../tla/1.jpg);
}
#main {
width: 700px;
height:500px;
background-color:yellow;
}
#borderleft {
width:50px;
height:500px;
background-color: orange;
float:left;
}
#logo {
width:700px;
height:150px;
background-color:gray;
}
#menutop {
width:700px;
height:50px;
background-color:aqua;
}
#menuleft {
width:150px;
height:500px;
background-color:red;
float:left;
}
#middle {
width:450px;
height:500px;
background-color:fuchsia;
background-image:url(../tla/pattern4.jpg);
float:left;
}
#bottom {
width:700px;
height:50px;
background-color:maroon;
clear:both;
}
#borderright {
width:50px;
height:500px;
background-color:green;
float:right;
}