CMS 编辑器不工作

CMS Editor not working

我创建了一个带有 table 的 cms 页面。我试图在我的 table 周围放置一个边框,但它没有在前端显示边框。 我可以在编辑页面时看到边框出现,但在实际站点上看不到。

我搜索了论坛并尝试更改 js/tinymce.js.inc 文件中的编辑器代码,但没有任何反应。

http://mypresta.eu/en/art/prestashop-16/extended-rich-text-editor.html

这是编辑器中 table 的 html 代码

<table style="height: 670px; width: 429px; margin-left: auto; margin-right: auto;" border="5px" width="429">

我可以在编辑器中看到一个 5px 的粗边框,但在前端却什么也没有。编辑器看起来很原始,几乎什么都不做。

as you can see border disappears

嗯,你也可以试试这样添加边框样式:

<table style="height: 670px; width: 429px; margin-left: auto; margin-right: auto; border: 5px solid #000000;" width="429">

应该对你有帮助。