This issue was mentioned in the previous message board systems, but is there an ETA on the ability to exclude the <DIV> tag that is auto added to posted text?
We are having a problem with that tag making text simple not render, because the editable content is inside a <SPAN>, and since <SPAN> is an inline tag, it cannot have block tags like <DIV>.
Here's an example. Put this into a HTML page view it in IE 6.0. If you refresh 10 times, you will not see it every time:
<div align="Center" style="width:100%;"><br></div>
<div ><img src="blah.gif" />
<p><span>Event Description</span></p>
<p><span><div id=z style="position: relative;">If I remove the position style from this tag, the text will show up</div></span></p>
</div>
<div>
<table cellspacing=1 cellpadding=0 border=1>
<tr>
<td width="50%"><span>Header 1</span></td>
<td width="50%"><span>Header 2</span></td>
</tr>
<tr>
<td valign=top width="50%">
<table border=0>
<tr>
<td valign=top width="50%">Val1</td>
<td valign=top width="50%">Val2</td>
</tr>
</table>
</td>
<td valign=top width="50%">
<span><b>Date:</b></span> October 10, 2003 </td>
</tr>
</table>
</div>
Thanks!