Image map in joomla - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:49:12Zhttp://stackoverflow.com/feeds/question/970945http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/970945/image-map-in-joomla0Image map in joomlaCarlos2009-06-09T15:53:08Z2009-06-26T17:25:19Z
<p>What would be the best way to put an image map in a joomla site? Would it be good to make it part of the template or to make it as an article?</p>
http://stackoverflow.com/questions/970945/image-map-in-joomla/1007069#10070690Answer by DisgruntledGoat for Image map in joomlaDisgruntledGoat2009-06-17T13:35:50Z2009-06-17T13:35:50Z<p>If the image map is part of the design then it should go in the template. But more than likely it will be part of the content or a module, so should go in either of those two places.</p>
<p>I don't know off-hand if you can add an image map with any of the Joomla editors (try JoomlaFCK if you don't already have it, that's the most full-features). Regardless, you can use the source mode or turn off the editor altogether and input raw HTML code.</p>
<p>It's also likely there are plugins you can use to make it easier, try <a href="http://extensions.joomla.org" rel="nofollow">http://extensions.joomla.org</a>.</p>
http://stackoverflow.com/questions/970945/image-map-in-joomla/1050266#10502660Answer by Carlos for Image map in joomlaCarlos2009-06-26T17:25:19Z2009-06-26T17:25:19Z<p>Found the following that helped out:
<a href="http://code.google.com/p/imgmap/wiki/Joomla_setup" rel="nofollow">http://code.google.com/p/imgmap/wiki/Joomla_setup</a></p>
<p>Instructions for installing were a bit confusing. Below are the steps I followed to install:
1. Copy files to plugins/imgmap/</p>
<ol>
<li>Edit {yourjoomlainstance}/plugins/editors/tinymce.xml, after 'directionality' add lines:</li>
</ol>
<p></p>
<p>Hide</p>
<p>Show</p>
<p></p>
<ol>
<li><p>Edit {yourjoomlainstance}/plugins/editors/tinymce.php, after 'XHTMLxtras' add lines:
if ( $imgmap ) {</p>
<p>$plugins[] = 'imgmap';</p>
<p>$buttons3[] = 'imgmap';</p>
<p>$elements[] = 'img[usemap|class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],map[id|name],area[shape|alt|coords|href|target]';</p></li>
</ol>
<p>}</p>
<ol>
<li>Add the following to the "Extended Valid Elements" parameter:
img[usemap|class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],map[id|name],area[shape|alt|coords|href|target]</li>
</ol>
<p>More details on what I tried are here ---> <a href="http://www.criverapr.com/2009/06/creating-image-maps-in-joomla.html" rel="nofollow">http://www.criverapr.com/2009/06/creating-image-maps-in-joomla.html</a></p>