Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
... only in this area and preview (not title and others)
.p { font-family: Optima-Regular, "Times New Roman", serif; }
Above does not work.
You need to target the correct element, you can inspect the elements in your browser console to find the correct selectors.
For example
.composer .preview { font-size: 24px; color: green; }
Will change the font-size and color of the composer.
@baris Thank you. How can I change this part's font? The following doesnot work.
.composer .p { font-size: 24px; color: green; }
That would be
.topic .content { }
Thanks it works indeed!