ckeditor默认字体大小,显示正确,但是保存不对 [ 新手入门 ]
这是我做的默认设置,虽然下拉框中默认显示的是“新宋体”,或“微软雅黑”,而且输入框显示的也是16px,但是保存后就不对了,好像还是原来默认的11px,挺小的不知道咋办?
config.Language = 'zh-cn';
config.font_names='新宋体;宋体;微软雅黑;黑体;仿宋_GB2312;楷体_GB2312;隶书;幼圆;'+ config.font_names;
config.font_defaultLabel = '微软雅黑;
config.fontSize_defaultLabel = '16px';
可以看到,在编辑时是16px,但是不是微软雅黑,保存后连默认大小也没了,完全变成了系统默认了。 保存前: [attach]886[/attach] 保存后 [attach]887[/attach]
共 3 条回复
-
楼主修改的是字体和字体大小的默认标签,而不是默认大小。
应该去修改CSS(contents.css)body { /* Font */ font-family: Arial, Verdana, sans-serif; font-size: 12px; /* Text color */ color: #222; /* Remove the background color to make it transparent */ background-color: #fff; }
改为
body { /* Font */ font-family: 微软雅黑, 黑体,宋体; font-size: 16px; /* Text color */ color: #222; /* Remove the background color to make it transparent */ background-color: #fff; }
yuhezheng 河南
注册时间:2012-07-26
最后登录:2020-03-04
在线时长:3小时55分
最后登录:2020-03-04
在线时长:3小时55分
- 粉丝4
- 金钱290
- 威望0
- 积分320