repeating gif

J

JT

Is there any way to have a GIF background image NOT repeat and tile itself
across a large screen.

Set at 1024 x 768 the image "tiles." Is there any way to prevent this
tiling?

I'd like the image (text only on white background) to layout just once and
then have white around everything else.

Making sense here? I think you'll understand.

THANKS!
 
T

Trevor L.

JT said:
Is there any way to have a GIF background image NOT repeat and tile
itself across a large screen.

Set at 1024 x 768 the image "tiles." Is there any way to prevent
this tiling?

I'd like the image (text only on white background) to layout just
once and then have white around everything else.

Making sense here? I think you'll understand.

THANKS!

You need a no-repeat in your CSS
e.g.
body {
background-color: white
background-image: url("my.gif");
background-repeat: no-repeat;
background-attachment: fixed; }
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top