How to I set the max height of a SyntaxHighlighter code block both website-wide and for a single block of code?
问题 I'd like to both locally and globally set the max height of SyntaxHighlighter code blocks. Here's an example of a global implementation that sort of works: Once you get SyntaxHighlighter implemented and working per these instructions here, just before </head> in your Blogger template, add: <style type="text/css"> .syntaxhighlighter { height: 1024px; overflow-y: auto !important; overflow-x: auto !important;} </style> (Source). This will limit code size to 1024 vertical pixels, then add a