Hi - I have a question regarding CKEditor's handling of fonts that do not exist.
Assume I have previously entered some text using a font named "testing" then used getData() to extract and save the contents.
My data now contains a span such as:
<span style="font-family: testing">My Contents</span>
Now I delete the "testing" font from my computer entirely. The tags do not change, which is fine, but they also do not have the ability to fall back. It seems that the "font-family" specificed in the span will always take precedence even when it does not exist.
Is there a way to specify a fall back font? Essentially I am looking for something that would change my span from the above example to something like:
<span style="font-family: testing,Calibri,sans-serif">My Contents</span>
Is this possible? Currently my font just seems to default to whatever it feels like (serif) even though body, p and span all have Calibri,serif specified in my CSS. I am using version 4.4.2.
Thanks in advance,
Brewster