Different background images on different sites [closed]

Take a look in the source code, and you’ll see the body tag on every page and/or post has a unique class associated with it (postid-1241 for example).

Select that class and change the background image there.

Example:

body.postid-1241 {
    background: url(http://example.com/bg.png) fixed;
}