Quote:
Originally posted by extreme
CSS is your friend ...
body { background: url(blah.gif) no-repeat; }
you can put alignstuff right after the "no-repeat" too, like "left top" or whatever.
|
...actually:
No repeat at all:
body { background: url('image.gif'); background-repeat: no-repeat; }
Only repeat horiz:
body { background: url('image.gif'); background-repeat: repeat-x; }
Only repeat vert:
body { background: url('image.gif'); background-repeat: repeat-y; }