Auto resize of background picture

X

Xeraphax

Hi,

I've put in my own background picture on my webpage. It looks fine when I am
in a lower resolution, however, when I am on a higher one, it tends to tile,
making it look bad. Is there a way to make the pciture automatically fit the
screen?

I'm using Frontpage 2003.
 
M

Murray

Background images do not resize. But you can prevent them from tiling with
CSS -

body { background-repeat:no-repeat; }
 
Top