Hi there llckll,
make the following amendments to your CSS...
...change this...
Code:
#body_container {
width: 900px;
height: 550px;
background-color:#FFF;
margin: 0px auto 0px auto;
-webkit-box-shadow: 0px 0px 35px #000;
-moz-box-shadow: 0px 0px 35px #000;
-o-box-shadow: 0px 0px 35px #000;
box-shadow: 0px 0px 35px #000;
}
...to this...
Code:
#body_container {
width:900px;
background-color:#fff;
margin:auto;
-webkit-box-shadow:0 0 35px #000;
-moz-box-shadow:0 0 35px #000;
-o-box-shadow:0 0 35px #000;
box-shadow:0 0 35px #000;
}
...and this...
Code:
#body_content_container
{
width: 900px;
height: 100%;
background-image:url(http://www.arcolacovenant.org/redesign/images/top_bar_bg.png);
background-repeat: repeat-x;
background-position: bottom;
overflow: auto;
}
...to this...
Code:
#body_content_container {
padding-bottom:40px;
background-image:url(http://www.arcolacovenant.org/redesign/images/top_bar_bg.png);
background-repeat:repeat-x;
background-position:bottom;
overflow:hidden;
}
...and finally, this...
Code:
#body_content {
margin: 40px 0px 0px 200px;
padding: 0px 0px 0px 0px;
position: absolute;
}
...to this...
Code:
#body_content {
margin:40px 0 0 200px;
}
coothead
Bookmarks