Jump to content

[SOLVED] HOWTO overlay 2 images.


rh-penguin

Recommended Posts

position the two images absolutely (or relatively) and give them a z-index.

the following code will position image 2 on top of image 1.

[code[<div style="position: relative">
<img src="1.png" width="100" height="100" style="position: absolute; top 0; left: 0; z-index: 1;">
<img src="2.png" width="100" height="100" style="position: absolute; top 0; left: 0; z-index: 2;">
</div>

 

You must give the parent element of the images a position other than static (static is the default)

One small problem tho........ when i minimize my browser the image stays where it is, how can i make it move with everything else?? If i put possition: relative OR static the image moves with the overall design but is placed on a different line(not next to the other image)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.