Normally I use tables for my layouts but I started using CSS instead. So I'm working on a layout from this and I've gotten a bit of the html and css working but I have no idea how to make it so the left and right borders repeat to go along with the rest of the page.
I have the design uploaded here so you can see what I mean.
The css for the left and right borders are
#left_border {
background-image:url(images/chillb0x_01.jpg);
position:relative;
left: 0px;
top: 0px;
width: 59px;
height:100%;
z-index: 1;
vertical-align:top;
}
#right_bottom {
position: absolute;
left: 1041px;
top: 212px;
width: 59px;
height: 688px;
z-index: 8;
vertical-align: middle;
background-image:url(images/chillb0x_08.jpg);
}
any help is greatly appreciated
