How do I created an image map that will work on all browsers?
This code (within define_main_page) works only with Firefox. It does not work with IE and Chrome, since they shrink the image relative to Firefox and therefore the map coordinates are no longer valid.
Is there a way to make the coordinates relative to the size of the image?
Thank you!Code:<style type="text/css"> div.home img { width:66em; } </style> <div class="home"> <img border="0" usemap="#Map" src="images/home.jpg" /> <map name="Map"> <area href="Link 1" coords="0,13,275,188" shape="rect" /> <area href="Link 2" coords="310,12,530,187" shape="rect" /> <area href="Link 3" coords="560,12,700,187" shape="rect" /> <area href="Link 4" coords="715,12,860,187" shape="rect" /> </map> </div>




