0

我一直在尝试用萤火虫和其他检查工具找到这个符号的位置。

您可以在此屏幕截图中看到红色的符号市场。我想将其移除或至少更改颜色以使其与背景融为一体。

您可以在这里看到红色的符号市场

这是网页: http ://npmaudiovisual.com/esde/?page_id=41

4

3 回答 3

1

style.css 中的第 88 行:

q:before, q:after{ content: "'";}

删除或覆盖声明。

要覆盖,请向选择器添加特异性:

q:before, q:after{ content: "'";} /* original declaration */
body q:before, body q:after{ content: "";} /* override with more specificity */
q:before, q:after{ content: ""!important;} /* override with !important */
于 2012-11-26T04:51:13.437 回答
1

style.css第 88 行的文件中,您有:

q:before, q:after{ content: "'";}

这是添加'字符。将其删除或将其覆盖为空字符串 ( content: "")。

于 2012-11-26T04:51:24.200 回答
0

现在只需在样式表中添加这个 css

.entry_content q:before, .entry_content q:after {
    content: "";
}
于 2012-11-26T04:54:32.540 回答