In previous post, I put java code in Syntax Highlighter pre section, noticed that there is an unnecessary vertical scollbar in Chrome(Works fine in Firefox) which only scrolls for one or two pixels.
To fix this issue, edit Blogspot template, add the following code after stylesheet shCore.css:
If you add previous code before loading shCore.css, the overflow definition .syntaxhighlighter {overflow: auto !important;} in shCore.css will overwrite previous definition.
If you want to hide horizontal scrollbar, add following code snippet after stylesheet shCore.css:
To fix this issue, edit Blogspot template, add the following code after stylesheet shCore.css:
.syntaxhighlighter { overflow-y: hidden !important; }
If you add previous code before loading shCore.css, the overflow definition .syntaxhighlighter {overflow: auto !important;} in shCore.css will overwrite previous definition.
If you want to hide horizontal scrollbar, add following code snippet after stylesheet shCore.css:
.syntaxhighlighter { overflow-y: hidden !important; }