How do I stop my background picture from repeating on the page?

W

Wendy Humphrey

My background picture keeps repeating on the page and I don't know how to set
it up so it appears only once. Can anyone help.
 
M

Murray

Use CSS -

body { background-repeat:no-repeat; }

(assuming it's a background image on the <body> tag)
 
Top