I've tried to change the font sizes in Alex Gorbatchev's SyntaxHighlighter .css
theme files, and used font-size
in the <pre>
tag, etc, but nothing happens. The size won't change.
PD: this is the shCore.css main file.
I've tried to change the font sizes in Alex Gorbatchev's SyntaxHighlighter .css
theme files, and used font-size
in the <pre>
tag, etc, but nothing happens. The size won't change.
PD: this is the shCore.css main file.
There are a couple of places to change the font size in the code sample you posted. Since it's not clear exactly which one you're targeting, start with this:
.syntaxhighlighter {
width: 100% !important;
margin: 1em 0 1em 0 !important;
position: relative !important;
overflow: auto !important;
font-size: 2em !important;
}
The sample above changes the font-size
to 2em's