I googled like there is no tommorow butI couldn't find an answer!

I'm new to CSS and am trying to create a design with 3 columns:
left column is scaleable and does not have a minimum width.
middle column is for the content: it has the header, the main body of the website and the footer. this has a fixed width.
right column is scaleable and does not have a minimum width.
the whole thing should be centered, so that if the windows is too big, it will repeat the background images in the left and right columns in order to fill the space, but the middle column has a fixed width.
needless to say, it doesn't work.


Here is the HTML:
Code: Select all
<__html>
<head>
<title>{title}</title>
<!--{metadata}-->
<link REL="STYLESHEET" TYPE="text/css" HREF="mobixie.css">
</head>
</__body>
<div class="wrapper">
<div class="bg_left">
</div>
<div class="center">
<div class="header">
</div>
<div class="torso">
</div>
<div class="footer">
</div>
</div>
<div class="bg_right">
</div>
</div>
<__body>
</__html>
Code: Select all
body
{
text-align: center;
}
.wrapper /*the box that is *supposed to keep it all in the middle....*/
{
margin: 0 auto;
text-align: left;
width: 100%;
}
.bg_left /*left background image - flexible width*/
{
background: url(images/mobixie/bg_left.jpg);
float: left;
min-width: 57px;
height: 885px;
}
.bg_right /*right background image - flexible width*/
{
background: url(images/mobixie/bg_right.jpg);
float: left;
min-width: 57px;
height: 885px.;
}
.center /*container for all the middle column*/
{
width: 726px;
float: left;
}
.header /*header file placement*/
{
background: url(images/mobixie/header.jpg) no-repeat;
height: 257px;
float: up;
}
.torso /*where the text boxes will go after the structure is complete*/
{
background: url(images/mobixie/bigbox_bg.jpg);
height: 528px;
float: up;
}
.footer /*footer image*/
{
background: url(images/mobixie/footer.jpg) no-repeat;
height: 100px;
float: up;
}
http://www.mysharefile.com/d/5896822/11 ... obixie.zip
I really can't figure this out and I have a feeling that If I get this things will be smoother later on....
I would really appreciate if you took the time to help me. I would take the time to help you!

-Leav