好吧,绿色问号与我的网站配色不匹配。如何更改/删除?您可以在这里看到它:http://alexgorbatchev.com/SyntaxHighlighter/manual/installation.html

谢谢!

最佳答案

shThemeDefault.css中,您可以找到以下代码:

.syntaxhighlighter .toolbar {
    background: none repeat scroll 0 0 #6CE26C !important;
    border: medium none !important;
    color: white !important;
}

CSS上方定义为显示绿色“?”在您的网站上标记。因此,如果要隐藏它,则在上面的代码中指定display : none。如果需要更改背景颜色,则可以在background属性中指定所需的颜色。

09-16 23:22