views:

53

answers:

1

Ok so I have a Background background-image: url('images/body.png'); now I want to overlay a Logo using background-image: url('images/logo.png'); but the Logo is behind the Background. I've tried z-index. But it doesn't help. Any ideas?

+2  A: 

Create a separate div for the logo and use position:absolute. make sure the logo div appears below the div with the /images/body.png in the page.

probbins222