mark.scott-tevaneuro
-
6/25/2009 3:49:04 PM
RE:Editable Image - allow link url's
Might I suggest an image map property on the editable image web part? I recently had this same need on a project and ended up having to use the static text web part with something like this:
<img id="bannerImage" alt="Banner Image" src="~/Images/headerImage1.aspx" usemap="#myImageMap" /> <map name="myImageMap" id="myImageMap"> <area shape="rect" coords="727,25,907,89" href="http://www.google.com" target="_blank" alt="Your Alt Text Here..." /> <area shape="rect" coords="309,25,646,98" href="home.aspx" alt="Your Alt Text Here..." /> </map>
|