Basically you will need to wrap #left , #centrecontent, and #clearfooter in a div and give that div a class ( i am calling it .center)
edit the the CSS accordingly:
Code:
#outer > .center { background:orange;}
#outer > .center:before { content:""; position: absolute; left: -160px; right: 100%; border-left: 1px solid black; border-right: 2px groove ; top:0; bottom:0; /*makes the boders*/}
#outer {
min-height:100%;/*for mozilla as IE treats height as min-height anyway*/
color: #000000;
border-left:160px solid pink;
border-right:1px solid #000;
margin:0 auto;
width:800px;
background: orange;
position: relative;
}
That's it. hope that helps.
Bookmarks