I'm in the process of updating from an outdated version of TinyMCE to the most recent release. In the old TinyMCE, if you inserted an image and aligned it to the left, the HTML generated looked like this:
< img src="testing.jpg" align="left" >
However, with the new version of TinyMCE, it now generates HTML like this:
< img src="testing.jpg" style="float: left" >
Unfortunately, this new HTML doesn't display correctly in Outlook. Do you have any suggestions on how I can resolve this problem without having to make changes to the core TinyMCE code?
Thank you!