MyBB Community Forums

Full Version: Adding Fonts to Editor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can add fonts to the Editor ? Huh
From line 66 of editor.js:

// 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";

Copy the layout of one of those lines and put the name of the font you want to add.
Can I add my personal font?