Custom banner system

Asked

Viewed 41 times

0

Speak people, I need to create a "Custom Banner" system. Let me explain a little. I need to create something that: I send a photo, put this photo inside a frame, and in that generate another photo where I can save the two together, as if it were a montage. Only this on web. Example: http://www.jordaomorais.com/site/banner.php

  • What’s wrong? What have you tried? Post your code

  • I haven’t made code yet, I’m trying to get the logic of how to make this system.

1 answer

0

Good with css you can create a class for image that stay behind and inside it you put:

.exemploClass{
 z-index: 0;
 background-image:imagem.png;
}

and in the image that will be on top:

.exemploClass2{
 z-index: 1;
 background-image:imagem2.png;
}

But I don’t know how you can handle that image.

  • I thought that, only you have to save him.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.