Okay here first post missed it cause code you put wasn't on your actual page.
Code:
/*background layout starts*/
#content
{
margin: 0 auto;
width: 80%;
text-align: left;
background:#C5A665;
border-left: 7px solid #CDA439;
border-right: 7px solid #CDA439;
}
html {height: 100%;}
body {
background-color: #996600;
background-image:url(../banner/mainbg.jpg);
margin: 0 auto;
width: 100%;
height: 100%;
border: none;
background-repeat: repeat-x;
background-position:top, center;
}
I said put it in this order:
Code:
/*background layout starts*/
html {height: 100%;}
body {
background-color: #996600;
background-image:url(../banner/mainbg.jpg);
margin: 0 auto;
width: 100%;
height: 100%;
border: none;
background-repeat: repeat-x;
background-position:top, center;
}
#content
{
margin: 0 auto;
width: 80%;
text-align: left;
background:#C5A665;
border-left: 7px solid #CDA439;
border-right: 7px solid #CDA439;
height: 100%;
}
or you could
Code:
#content
{
margin: 0 auto;
width: 80%;
text-align: left;
background:#C5A665;
border-left: 7px solid #CDA439;
border-right: 7px solid #CDA439;
}
html {height: 100%;}
body {
background-color: #996600;
background-image:url(../banner/mainbg.jpg);
margin: 0 auto;
width: 100%;
height: 100%;
border: none;
background-repeat: repeat-x;
background-position:top, center;
}
#content
{
height: 100%;
}
Bookmarks