I'm designing a small website for a music festival and I thought I could just make the homepage look like the poster we've designed. So what I want to do, is to save the single layers of that poster (i.e. background and the logos of the bands, etc.) as pngs, so I can have the background of the poster as the website's background and then put the logo layers etc. on top of it (when that's done, I'd like to animate them a little, but first things first). I've tried the background-img property, but that way, I can't seem to resize the image the way I want it to. So I've tried it like this:
<body>
<img src="background.png" class="bg">
<img src="img/01_Headline.png" class="header">
</body>
which makes the background img appear the way I want it to, but of course this puts the other logos that I want on top of background.png down below it.