lilivg Moderator

| It can be done, but it's a little tricky as far as positioning the images goes. In the code, it would look something like this:
body {
background-image: url(http://somesite.com/image1.jpg), url(http://somesite.com/image2.jpg), url(http://somesite.com/image3.jpg);
background-position: top left, top right, center center;
background-repeat: no-repeat, no-repeat, no-repeat;
background-attachment: fixed, fixed, fixed;
}
you can change each of those settings to whichever you prefer, this is just an example.
Here is a link to a more detailed explanation of how it's done: Multiple Background Images |