Question:
How can I make the editor use a specific font style by default? I would like to specify a default style that the editor is using when there is not content inside it.
Answer:
The way we would recommend to set a default font option for the editor is via CSS. To make this change appear both when you're editing the content and when you are displaying it, you should make use of the fr-view class. Here is a quick snippet for that:
.fr-box.fr-basic .fr-element.fr-view { font-family: "Times New Roman", Georgia, Serif; font-size: 18px; color: #444444; }