Forum Moderators: not2easy
#foreGround {
background: transparent url(Image1.png) no-repeat;
position: absolute;
top: 20%;
left: 20%;
z-index: 2;
}
#background {
background: url(Image2.jpg) no-repeat;
position: absolute;
top: 20%;
left: 20%;
z-index: 1;
}
That should work if the image you wanted in the foreground was a gif or a png, something with both opaque and transparent areas.. then you'd see your background image through the transparent places. You can also just plop an image into the equivalent of the #background block and use absolute positioning to line it up the way you want.
hth?
g.