
04-23-2006, 12:35 PM
|
|
|
Join Date: Nov 2001
Location: Fife, Scotland
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by stonyarc
The DIV where the googlemap loads is called "map".
You can get this effect if you have an image map loading on your site with the same name.
Code:
<map name="Map">
<area shape="rect" coords="449,3,789,99" href="http://www.refrigeration-engineer.com/jobs" target="_blank">
</map>
In combination with this
Code:
<img src="http://www.refrigeration-engineer.com/forums/images/misc/head/banner.jpg" width="789" height="100" border="0" usemap="#Map">
That line is the cause
To fix
Code:
<map name="Map1">
<area shape="rect" coords="449,3,789,99" href="http://www.refrigeration-engineer.com/jobs" target="_blank">
</map>
In combination with this
Code:
<img src="http://www.refrigeration-engineer.com/forums/images/misc/head/banner.jpg" width="789" height="100" border="0" usemap="#Map1">
This should help you out
|
sorry, where am I looking for the above?
Thanks
|