All instances of image "float:value" in my Drupal site strip off upon saving. I encountered this with TinyMCE module before and I thought this was TinyMCE exclusive. To my horror I just discovered that all instances of float property strips off (in blocks and content with full html/php) upon saving it. I resorted to CSS instead, styling each images through CSS. But this is so not an option for me. Can anyone please tell me what's going on here and how to resolve this? Thanks.

Comments

halloffame’s picture

An example:
Here's what I have upon creating the block/body content (with full html/php)...
<img src="image_here.gif" style="padding:10px" style="float: left" width="10" height="10" >';

And here's what I have after saving it...
<img src="image_here.gif" style="padding:10px" width="10" height="10" >';
Where'd float go?

This also applies to text...