如何在css中更改或删除引号

时间:2012-11-26 04:48:38

标签: css quotes symbols

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

您可以在此屏幕截图中看到红色的符号市场。我想删除它或至少改变颜色,以便它与背景融合。

You can see the symbol market in red here

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

3 个答案:

答案 0 :(得分: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 */

答案 1 :(得分:1)

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

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

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

答案 2 :(得分:0)

现在只需在样式表

中添加此css
.entry_content q:before, .entry_content q:after {
    content: "";
}