is there any way to change the font type to “Aptos” in the Richtext Editor? I have the option in my Application to send Mails and for the Body i provide the User the Richttext editor but the Signature is automated by the mailservice and uses Microsoft default font typ Aptos. Looks not so gread i this combination. Further if you break a line in the Editor with Return then the space between the blocks is huge any way to make this smaller?
The HTML produced by the Rich Text Editor does not apply any CSS, so the font-family that it’s rendered in depends on the styles applied to the rendered HTML. In other words, you need to apply CSS to the generated HTML produced by the component to change the font-family.
When you press enter, a new HTML paragraph (a <p> element) is created. The spacing between paragraphs is similarly determined by the CSS with which the HTML is rendered, not by the component.