View Single Post
Old 09-03-2003, 01:48 PM  
fletcher
Confirmed User
 
Join Date: Jan 2003
Location: Austin, TX
Posts: 698
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; }
__________________
 
[email protected]
ICQ: 6411138
fletcher is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote