If I type some text, then hit enter, then type some more I get html that looks like:
-------------------------
Some Text<BR><BR> More Text
-------------------------
If I then highlight "More Text" and click on the "Center Text" button I get the following in IE:
<P align=center>Some Text<BR><BR>More Text</P>
In FireFox I get:
Some Text<br><br><div style="text-align: center;"> More Text</div>
Is there a way to intercept the alignment commands in IE and attempt to make it look like it does in firefox?
Or, is there a way to make every "Enter" keypress insert <p>{cursor}</p> so that the alignment options work as expected? My users are typing, then selecting text to center it, but everything gets centered.