MyBB Community Forums

Full Version: Post editor fonts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add fonts to the post editor?
Open up /jscripts/editor.js, lines 66-74 and find:

// Defines an array of fonts to be shown in the font drop down.
this.fonts = new Object();
this.fonts["Arial"] = "Arial";
this.fonts["Courier"] = "Courier";
this.fonts["Impact"] = "Impact";
this.fonts["Tahoma"] = "Tahoma";
this.fonts["Times New Roman"] = "Times New Roman";
this.fonts["Trebuchet MS"] = "Trebuchet MS";
this.fonts["Verdana"] = "Verdana";

Then add new lines accordingly. Be sure to pick fonts that most users have installed on their computer.