|
Oh, I've tried to use the faux columns method, but couldn't get that to work. Maybe I did something wrong? Anyway, here's the CSS I'm using:
/* Layout Stylesheet */
body{
background: #006633;
color: #333333;
}
#header{
position: absolute;
top: 10px;
left: 20px;
width: 720px;
border: 2px solid #000000;
background: #c0c0c0;
color: #333333;
margin: 0px 0px;
padding: 0px 0px;
height: 144px;
; clip: rect( )
}
#navbar{
width: 180px;
border: solid;
background: #66CC66 url(none);
color: #333333;
; clip: rect( )
; border-color: #000000 solid #000000 #000000
; visibility: inherit
; vertical-align: top
; top: 156px
; left: 21px
; border-width: 0px 0px 2px 2px
}
#content{
width: 500px;
border: 2px solid;
background: #ffffcc;
color: #333333;
padding: 20px 20px;
; clip: rect( ); left: 180px
; border-color: #000000 solid
; visibility: inherit
; position: absolute
; top: 0px
; height: 100%
; z-index: auto
}
#container { background-color: #CC00CC; clip: rect( ); position: relative; visibility: visible; height: 100%; width: 720px; top: 140px; left: 10px; z-index: auto}
Note: I was trying to put the navbar and content within the container, but I must not have done that right?
Thanks again
|