Einfügen
Im Adminpanel einlogen, dann Designverwalung ~> Forum ~> Allgemeine Form der Forumseiten gehen!
Und dort nach $BODY$ folgendes einfügen
Code
<script type="text/javascript">
fontID = document.addform.ffont.options.length;
var fonts = new Array();
fonts[0] = new Array("Arial Black");
fonts[1] = new Array("Mistral");
fonts[2] = new Array("Consolas");
fonts[3] = new Array("Monotype Corsiva");
fonts[4] = new Array("Symbol");
fonts[5] = new Array("Courier New");
fonts[6] = new Array("MS Serif");
fonts[7] = new Array("MS Sans Serif");
fonts[8] = new Array("Arial Black");
fonts[9] = new Array("Arial Black");
fonts[10] = new Array("Comic Sans MS");
fonts[11] = new Array("Times New Roman");
fonts[12] = new Array("Mangal");
fonts[13] = new Array("Roman");
fonts[14] = new Array("Franklin Gothic Medium");
fonts[15] = new Array("Gautami");
fonts[16] = new Array("Marlett");
fonts[17] = new Array("Modern");
fonts[18] = new Array("Trebuchet MS");
fonts[19] = new Array("Tahoma");
fonts[20] = new Array("Sylfaen");
for(i=0;i<fonts.length;i++) {
document.addform.ffont.options[fontID] = new Option(fonts[i]);
fontID++;
}
</script>