Jump to content

[SOLVED] Hover image over image


peranha

Recommended Posts

Does anyone know how to hover an image over another at a certain point(pixels) without combining the 2 to make 1 image? 

 

Say I have a background image 700 X 500 pixels

 

At point 200,125 I want to put image 1

 

At point 400,25 I want to put image 2

 

and so on.

 

Any questions, just ask, not sure if it is clear enough.

Link to comment
Share on other sites

Here is what I have and it is putting it absolute to the page, not the background pic

 

<div id="map">
<img src="pics/city1.jpg" alt="Town 1 Map" border="0" width="720" height="440" usemap="#Town" />
<div id="position1">
	<img src="pics/building.gif" alt="Baracks" />
</div>
</div>

 

and the css

 

#map {
width: 720px;
height: 440px;
}

#position1 {
position: absolute;
top: 100px;
right: 150px;
}

 

any ideas??

Link to comment
Share on other sites

<div id="map">
<div class="position1">
	<img src="pics/building.gif" alt="Baracks" />
</div>
<img src="pics/city1.jpg" alt="Town 1 Map" border="0" width="720" height="440" usemap="#Town" />
</div>

 

#map {
width: 720px;
height: 440px;
}

#map .position1 {
position: absolute;
top: 100px;
right: 150px;
}

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.