一种方法:
通过js,获取到到编辑器的iframe,修改其width。

将以下js添加到站点当前母板页的</bogy>之上即可:
<script type="text/javascript">   
// -------------------------------------------------------------------
//
 change RTE Editor widht JS by jianyi0115@163.com
//
 add this js file to master file , before </body>
//
 -------------------------------------------------------------------
var _tk_arIFRAMES = document.getElementsByTagName("iframe");
for (var c=0; c<_tk_arIFRAMES.length; c++)
{
    
if (_tk_arIFRAMES[c].className == "ms-rtelong")
    {
        _tk_arIFRAMES[c].style.width
="600px";
    }
}
    
</script>

 

或者:直接修改css :

 

< style >
.ms-rtelong
{
width:600px;
}
< / style >

相关文章:

  • 2022-12-23
  • 2021-11-22
  • 2021-04-19
  • 2021-11-21
  • 2021-05-21
  • 2021-11-27
猜你喜欢
  • 2021-06-10
  • 2021-08-02
  • 2022-12-23
相关资源
相似解决方案