studentkrubb 0 Report post Posted March 9, 2011 Hello, I'm trying to add two background images at the same page. body { background-image: url("http://media.nysida.studentkrubb.se/2011/03/kok1.png"); background-repeat:no-repeat; background-position: center center; } body { background-image: url("http://media.nysida.studentkrubb.se/2011/03/copyright.jpg"); background-repeat:no-repeat; background-position: bottom right; } The image positioned bottom right is a small transparent picture. I can't see where I get it wrong, any ideas? Share this post Link to post Share on other sites
cmunns 16 Report post Posted March 9, 2011 You can't apply two backgrounds to the same selector. One of those selectors needs to be a direct child of the parent. Look for whatever div comes right after the body tag and use that Share this post Link to post Share on other sites
studentkrubb 0 Report post Posted March 10, 2011 Thanks! Works like a charm. Share this post Link to post Share on other sites