Controlling font size of [code] blocks
-
The font size in [code] blocks is larger than my standard font, and results in a visual aesthetic that detracts from the rest of the post. How can I control (decrease) the font size between [code] and [/code]? I would preferably like to do this site-wide, but cannot find a way to adjust just that setting (possibly with custom css?). Alternatively, I could include a setting with each block of code.
Example:
[code language = "r"]
library(graphics)
[/code]Results in code that looks one to two point sizes larger than the surrounding text.
Thank you.
The blog I need help with is: (visible only to logged in users)
-
Hi there,
Currently, the only way to adjust only the code font size would be to use the following CSS:
.syntaxhighlighter { font-size: 12px !important; }The !important attribute is necessary as it’s used in the theme CSS so normal CSS (without the important tag) will not override the theme default. Give that a try in Appearance -> Customize -> CSS and let me know if it works for what you’re looking for!
-
-
- The topic ‘Controlling font size of [code] blocks’ is closed to new replies.