So on the new portfolio website I am working on for myself I am using the following plugin. https://github.com/stowball/jQuery-rwdImageMaps .\[/quote\]What should happen is simple.... when you click on the word in the word cloud it goes down to the #element. (Which is working perfectly), but since this website is responsive... when you re-size the page the image map messes up.The plugin should be automatically re-sizing the image map but it isn't so I assumed I have either a serious or silly mistake in my code.The specific code where I am using the jQuery plugin is here...\[code\]<script>$(document).ready(function(e) { $('img[usemap]').rwdImageMaps(); $('area').on('click', function() { alert($(this).attr('alt') + ' clicked'); });});</script>\[/code\]There was also some CSS code imported which if you go into firebug seems to be being applied which was...\[code\]img[usemap] { border: none; height: auto; max-width: 100%; width: auto;}\[/code\]Again humongous thanks in advance!