Quote:
Originally Posted by Dez_U
|
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