我正在使用Opencart开发网站。似乎在调用$ description时,添加了内联样式。
在this product page上,产品说明添加了以下内联样式:
<span style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif;
line-height: 18px; ">
在another product page上,范围样式为:
<span style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans;
font-size: 11px; line-height: 14px; text-align: justify; ">
这真让我困惑,因为他们都使用/catalog/view/theme/[theme-name]/product/product.tpl而且php是:
<div id="product-description"><?php echo $description; ?></div>
在category page上,$description
具有以下样式:
<span style="font-family: arial, sans-serif; font-size: small; line-height:
14.545454025268555px; ">
谁能告诉我这可能来自哪里?
MTIA!
答案 0 :(得分:2)
样式实际上来自管理面板中的编辑器。它使用TinyMCE(模仿富文本编辑器的JavaScript编辑器),这将是原因。如果在编辑产品时单击source
按钮,则可以在说明区域中查看和编辑此代码