Setting up background

J

JBear

How can I use a picture as a background without it being tiled? Much like in
word where you can put in a faded version of the picture over the entire page.
 
M

Murray

You would have to use CSS's background-repeat style on the container of the
background image, e.g.,

<body style="background-repeat:no-repeat;"....
 
Top