Eric wrote: > hi travis, > > i see the error now as well. How would you recommend to implement such a > BG image then? I can't just put it as a BG image for the page, cause > then the fill keeps repeating itself (unless i add a large whitespace to > it).
Does this not work?
body {
background-repeat: repeat-y;
}
You can also change the background position using
background-position: right;
if you want.
