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)

Link to comment
Share on other sites

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)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.