I've discovered that when inserting a link around an image in a list, the linked image will be removed from the <li> and placed just before the closing </ul> or </ol>.
This occurs in both Firefox 2.0.0.20 and 3.0.5.
Here's the steps to reproduce:
You'll end up with something like this:
Regards
Matt
This occurs in both Firefox 2.0.0.20 and 3.0.5.
Here's the steps to reproduce:
- Open an editor in HTML mode (the demo one is fine: http://demos.telerik.com/aspnet-ajax/Editor/Examples/Default/DefaultCS.aspx)
- Paste in the following code:
<ul> <li><img src="http://www.izilla.com.au/img/logos/logo_izilla.png" alt="Izilla Logo" /></li> <li><img src="http://www.izilla.com.au/img/logos/cogdotgov.gif" alt="Cognition ECM Logo" /></li> </ul> - Switch to design view
- Using the Link Manager, add a link around one of the images.
You'll end up with something like this:
<ul> |
<li></li> |
<li><img alt="Cognition ECM Logo" src="http://www.izilla.com.au/img/logos/cogdotgov.gif" /></li> |
<a href="http://www.izilla.com.au"><img alt="Izilla Logo" src="http://www.izilla.com.au/img/logos/logo_izilla.png" /></a></ul> |
Regards
Matt