Repeating Image

They have: 4 posts

Joined: Oct 2005

I'm making a site where I need to have a repeating image running across the bottom of the screen, like on this site,

http://www.live8live.com/

I don't want it to be just a huge picture though. Is there a way to do this without tables, I tried that but it leaves white space on the border. Is there a way to do it with CSS on the body tag?

Thanks,
Anthony

He has: 698 posts

Joined: Jul 2005

Yep, just insert this into your CSS file.

body {
background-image: url("path/to/image");
background-repeat: repeat-x;
background-position: bottom;
}
'

Wink

Kurtis

They have: 4 posts

Joined: Oct 2005

Thanks

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.