Page 1 of 1

Default font in the editor

Posted: Thu Feb 24, 2011 11:03 am
by Sasni
Is it possible to set the default font and font size in the editor? I use Xinha.

Re: Default font in the editor

Posted: Thu Feb 24, 2011 11:27 am
by Timbalu
Not really!
If you know about inline css you can use css rules in xinhas html code view for the content entry part you are writing.
The default font is set in the css classes of the default fallback template and can be overridden by your own templates style.css or user.css file. This is not really bulletproof, while some templates overwrite this directive by default. So you could install Firefox firebug plugin and look where it is done in your case.

Code: Select all

body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
    font: 100.01% Verdana,Arial,Helvetica,sans-serif; /* change here default font */
}