图集编辑器:
文章编辑器:
修改方法如下: 将/dede/templets/album_edit.htm 中的
<?php GetEditor("body",$body,450,"Diy"); ?> |
<?php GetEditor("body",$addRow['body'],450); ?> |
将/dede/templets/album_add.htm 中的
<?php GetEditor("body","",450,"Diy"); ?> |
<?php GetEditor("body",$addRow['body'],450); ?> |
编辑器的宽度不够用的话,可以改下这个td的宽度,默认为800,改为1100
<tr> <td height="24" colspan="4" class="bline"><table width="1100" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="90"> 图集内容:</td> <td><?php GetEditor("body",$addRow['body'],1100); ?></td> </tr> </table></td> </tr> |