Hi,
I am currently experiencing an issue in IE7 when attempting to add a hyperlink (through the hyperlink manager) to an image that is contained within a floated div.
As an example, I have performed the following test on the demo site (http://www.telerik.com/DEMOS/ASPNET/Prometheus/Editor/Examples/Default/DefaultCS.aspx).
1. Add a div around the current image using the HTML view of the editor:
<div style="float: left;"><img alt="product logo" src="../../Img/productLogoLight.gif" /></div>
2. Go back to the Design view
3. Click on the image and select the Hyperlink Manager
4. Add a link to the image
The following output is produced in IE:
<a href="http://www.telerik.com">http://www.telerik.com</a>
<div style="float: left"><img alt="product logo" src="../../Img/productLogoLight.gif" /></div>
However, in firefox, it produces the expected output of:
<div style="float: left;"> <a href="http://www.telerik.com"><img src="../../Img/productLogoLight.gif" alt="product logo" /></a></div>
Is there any way to get this to work in IE?
I am currently experiencing an issue in IE7 when attempting to add a hyperlink (through the hyperlink manager) to an image that is contained within a floated div.
As an example, I have performed the following test on the demo site (http://www.telerik.com/DEMOS/ASPNET/Prometheus/Editor/Examples/Default/DefaultCS.aspx).
1. Add a div around the current image using the HTML view of the editor:
<div style="float: left;"><img alt="product logo" src="../../Img/productLogoLight.gif" /></div>
2. Go back to the Design view
3. Click on the image and select the Hyperlink Manager
4. Add a link to the image
The following output is produced in IE:
<a href="http://www.telerik.com">http://www.telerik.com</a>
<div style="float: left"><img alt="product logo" src="../../Img/productLogoLight.gif" /></div>
However, in firefox, it produces the expected output of:
<div style="float: left;"> <a href="http://www.telerik.com"><img src="../../Img/productLogoLight.gif" alt="product logo" /></a></div>
Is there any way to get this to work in IE?