It made the content show back up but it also added a new problem.
The bottom images are not sticking to the bottom margin any more.
CODE
.footer{
height: 70px;
overflow: hidden;
background: #eff1c0 url(images/r3_c3.jpg) bottom right no-repeat;
clear: both;
margin-bottom: 30px;
margin-left: 30px;
margin-right: 30px;
}
.footer div{
width: 800px;
height: 70px;
overflow: hidden;
background: url(images/r3_c1.jpg) left bottom no-repeat;
}
I still can't get the side images to repeat.
CODE
.content{
background: url(images/rr.jpg) center right repeat-y;
clear: both;
height: 20px;
margin-right: 29px;
}
.content div{
background: url(images/ll.jpg) center left repeat-y;
width: 800px;
height: 20px;
margin-left: 29px;
}
The text is kinda just a place holder thats not really important. I'm trying to make the box resize to have a 30px gap on the sides. The bottom should go down as far as the text does.
I had it working with tables and i've been reading rounded corner guides to try and make it work in css but my skills are limited at best.
I've got all the content on another web page i'm making a new design for so my plan is to copy everything out of the wrapper and past it into my box.
Do you know of a better way to get the box working?
The only guides I can find just tell you how to use 4 corner images and a back ground color to get the look. I havent found one that tells me how to get the bottom, top, and sides.
Just by playing around with it I got the top and bottom images to work by increasing the width to 800px for each. They kinda just overlap each other.
For the sides i'm trying the same thing and its almost working. They are there and in the right place but they are not repeating.
here is the html part of my page. All the test text was just to make sure that the bottom images moved down as the content on the page got larger.
CODE
<div id="container">
<div class="content_box">
<div class="box">
<div>
</div>
</div>
</div>
<div class="content">
<div>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
<p>Test Test</p>
</div>
</div>
<div class="footer">
<div>
</div>
</div>
</div>