Thread: Extending page
View Single Post
  #5 (permalink)  
Old Apr 25th, 2008, 09:45
Emzi's Avatar
Emzi Emzi is offline
SuperMember

SuperMember
Join Date: Sep 2007
Location: Manchester
Age: 25
Posts: 147
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Extending page

Quote:
Originally Posted by fr33sty13 View Post
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;
}
Reply With Quote