Hi.
I tried using these sentences with our own CE online editor version:
Type a line of text. Set this second sentence large. Leave the outside...
Type a line of text. Set this second sentence large. Leave the outside...
Originally, the first line was identical to the second one. I then selected all the sentences in the first one and changed the size and font... It came out correctly.
I then tried on general.aspx and you are right -- general.aspx does not change the middle sentence:
So I examined the HTML.
On our online editor, the HTML is:
<html>
<head>
</head>
<body bottommargin="50" leftmargin="75" topmargin="50" rightmargin="50" style="font-size: 12px; font-family: Verdana;">
<font face="Arial" size="4">
Type a line of text. </font><font face="Arial" size="4">Set this second sentence large.</font><font face="Arial" size="4"> Leave the outside...</font><br />
<br />
Type a line of text. <font face="Georgia" size="5">Set this second sentence large.</font> Leave the outside...<br />
<br />
</body>
</html>
In general.aspx, the HTML is:
<div><br />
<span style="font-size: 12pt; font-family: Verdana">Type a line of text. <font face="Georgia" size="5">Set this second sentence large.</font> Leave the outside...</span><br />
</div>
<div>Type a line of text. <font face="Georgia" size="5">Set this second sentence large.</font> Leave the outside...<br />
</div>
You can see there are significant differences in the HTML. It must be a setting, so I checked our settings:
ConvertHTMLTagstoLowerCase: False
EditCompleteDocument: True
EnableStripScriptTags: False
ShowTagSelector: False
ShowHtmlMode: False
ShowPreviewMode: False
URLType: Absolute
I believe BreakElement might be part of the issue as well.
I'm sure you can figure it out from the above info.
FredD