Yep i did.
www.pgzz.gamerunion.com/test.html
I'm just looking for good clean code. I built this by picking though 3 different guides that didn't do everything I needed them to and then played around with it until i started to look like a box.
I haven't been able to find a guide that lets me use images for corners and top, bottom, and side borders.
here's a look at my css code
Code:
#container{
width: 100%;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
}
.content_box {
margin-left: 84px;
margin-right: 84px;
}
.box{
height: 100px;
overflow: hidden;
background: #eff1c0 url(images/r1_c3.jpg) top right no-repeat;
}
.box div{
width: 800px;
height: 100px;
overflow: hidden;
background: #eff1c0 url(images/r1_c1.jpg) top left no-repeat;
}
.content{
background: url(images/rr.jpg) center right repeat-y;
clear: both;
margin-right: 84px;
margin-left: 84px;
}
.content div{
background: url(images/ll.jpg) center left repeat-y;
width: auto;
padding-top: 1px;
padding-bottom: 25px;
}
.footer{
height: 100px;
overflow: hidden;
background: #eff1c0 url(images/r3_c3.jpg) bottom right no-repeat;
clear: both;
margin-bottom: 30px;
margin-left: 84px;
margin-right: 84px;
}
.footer div{
width: 800px;
height: 100px;
overflow: hidden;
background: url(images/r3_c1.jpg) left bottom no-repeat;
}
Last edited by Snot; 08-13-2009 at 11:39 PM..
|