Well, the green question mark does not go with my website color scheme. How do I change/remove it? You can see it here: http://alexgorbatchev.com/SyntaxHighlighter/manual/installation.html
Thanks!
If you are facing this issue for your Google Blogger, it means you have already added SyntaxHighlighter libraries in your template.
So go to Template in your Blogger. Then click on Edit HTML and search for the line:
SyntaxHighlighter.all();
Add the below line before that line:
SyntaxHighlighter.defaults['toolbar'] = false;
This will disable your lime-colored question mark in Blogger.
SyntaxHighlighter.defaults.toolbar = false;
In your shThemeDefault.css
you can find the following code:
.syntaxhighlighter .toolbar {
background: none repeat scroll 0 0 #6CE26C !important;
border: medium none !important;
color: white !important;
}
Above CSS difines to display green color '?' mark in you website.So, if you want to hide that then specify display : none
in above code.If you need to change the background color you can specify you desired color in background
property.
For version 3.0.x
SyntaxHighlighter.defaults['toolbar'] = false;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With