Hi Alll
I am using grails ckeditor plugin and doubt this would be any different to the core ckeditor functionality, the issue we have seen is when setting fonts for example:
We have noticed Attachment dsfa is an existing template in which I changed the header. Sizes for Creativity in the template were 36 and 24 but they came out as 27 and 18.
So when email received in outlook the fonts showd up as 27 for 36 selected font and so on...
The other question was related to default fonts:
config.font_defaultLabel = 'Arial';
config.font_names = 'Arial;Verdana';
config.fontSize_defaultLabel = '12px';
Although all of this is set on my configuration, if a user starts to type inside ckeditor area -
The default text :
<p>aaaaa</p>
So it has no style set within a span -
Where as if the text is now highlighted and physically defined - it works:
<p><span style="font-family:arial">aaaa</span></p>
Anything to do to ensure by default all written text is defaulted to the defaults selected?