我试图在CKEditor中添加尼泊尔字体(pcsnepali.TTF)。 到目前为止,我可以在字体选择下拉列表中添加我的(尼泊尔语)字体,但是该字体未在编辑器中显示。 Here is the image of the font selection dropdown
这是我添加的代码。
@font-face {
font-family: "pcsnepali";
src: local("pcsnepali"), url("../fonts/pcsnepali.TTF") format("truetype"); /*non-IE*/
}
在content.css中
@font-face {
font-family: "pcsnepali";
src: local("pcsnepali"), url("../fonts/pcsnepali.TTF") format("truetype"); /*non-IE*/
font-weight: normal;
font-style: normal;
}
和config.js中
config.contentsCss = 'fonts.css';
//the next line add the new font to the combobox in CKEditor
config.font_names = 'pcsnepali/pcsnepali;' + config.font_names;