Thanks for the example.
Here are some examples of using the CSS code if someone wants it:
Code:
/* Repeat up and down*/
body {
background: #FFF url(/images/yourimage.jpg) repeat-y top left;
}
/* Repeat left and right */
.yourclass {
background: #222222 url(/images/yourimage.gif) repeat-x bottom right;
}
/* only show the image once */
#your_id {
background: #000 url(/images/yourimage.png) no-repeat;
}
/* Make the image *fixed* */
HTML {
background: #555 url(/images/yourimage.ico) no-repeat bottom right fixed;
}