Quote:
Originally Posted by fr33sty13
Ok this is the css code I am currently using for the content page which has trouble extending down all the way to where the writing stops.
#page { background:url(images/Page. png);
width:801px; background-repeat:repeat-x;
height:100%px; background-repeat:repeat-x;
margin:auto;
color:#66CCFF;
}
|
You may want to tidy this up a bit as some of it is incorrect. There is no need to do background-repeat twice, and also 100%px doesn't exsist.
Try this:
#page {
background:url(images/Page.
png);
width:801px;
height:100%;
background-repeat: repeat-x;
margin:auto;
color:#66CCFF;
}