Hello,
Im trying to create a simple table with certain regions that can be edited using the inline version of CKeditor. Firefox seems to render the page differently when I add a div with contenteditable="true" in the areas I want to be editable.
Here is an example:
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#CC0000">
<tr>
<td width="15"></td>
<td height="75" align="left" valign="middle" style="font-family:'Trebuchet MS', Arial, Helvetica, sans-serif; text-transform:uppercase; color:ghostwhite; font-size:36px;">
<div contenteditable="true">
Tasty Treats
</div>
</td>
<td width="15"></td>
</tr>
</table>
Notice the difference between the output in firefox with and without contenteditable="true".
Any solutions to this problem?
Thank you in advance.