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
https://forums.phpfreaks.com/topic/130194-solved-hover-image-over-image/
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??

<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;
}

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.