2014-10-03 61 views

回答

0

我可以添加字體到tinymce的唯一方法是編輯核心代碼。

先複製您的字體文件/theme/yourtheme/fonts/

爲您的字體的CSS文件中/theme/yourtheme/style/fonts.css

​​

您還需要向@字體面上面複製到/theme/yourtheme/style/custom.css這樣的字體正確顯示。

編輯/lib/editor/tinymce/lib.php和線$fontselectlist = empty($config->fontselectlist) ? '' : $config->fontselectlist;後這2行添加到function get_init_params()(這是在Moodle中2.5)

$contentcss .= ', /theme/yourtheme/style/fonts.css'; 
    $fontselectlist .= ';Your font=yourfont'; 

清除緩存/admin/purgecaches.php刷新瀏覽器和現在的字體應該在那裏。

+0

非常感謝您的回覆。我嘗試了這些步驟。在編輯器中,它也顯示在下拉列表中,但在輸入時不起作用。 – MiNdFrEaK 2014-10-03 17:20:23