Hi,

Originally Posted by
ellayjay
The background image repeat-y is not expanding
You have set the container to 100% height which means that it won't ever stretch more than the intial viewport. You need to use min-height:100% instead. See the faq on 100% height in the faq for more info.
Code:
#container {
margin: 0px auto;
width: 985px; /* 750px; */ /* 716px; */
min-height: 100%;
text-align: left;
position: relative;
}
* html #container{height:100%}
If you can't access that css file then you will have to over-ride the height in a file you can access.
e.g.
Code:
#container {
height:auto!important;
min-height: 100%;
}
* html #container{height:100%!important}
Bookmarks