Several of our users have reported having issues within CuteEditor when changing text font and size.
When you have multiple paragraphs of text, when you select all of the text and attempt to change the font several times (trying to find the best one) the editor begins to change only sections of the selected text. This seems to happen after using the bold option.
When looking at the HTML view, it appears to be adding style tags to only certain sections.
I have been able to replicate this on the demo site for CuteEditor.
Steps to replicate:
1. Enter lines of text
2. Select text and click 'B' to bold
3. Change font style a few times, notice all text is changed the first time, then the first 3, then the first 2, then only the first line.
4. View HTML and note the following using 'Test' text:
<div><strong style="font-family: Impact;"><span style="font-family: Verdana;">Test</span></strong></div>
<div><strong><span style="font-family: Georgia;">Test</span></strong></div>
<div><strong><span style="font-family: Courier;">Test</span></strong></div>
<div><strong><span style="font-family: Verdana;">Test</span></strong></div>
Has anyone else seen this issue?