To change the code body font size, I have
in the PDF Stylesheet which works great, but this does not affect code title. What is the CSS div tag for also changing the code title in the PDF export? The default is way too large, seems to be around 28.
Thanks
Found the answer from reverse engineering the HTML generating the page. The answer is to add div.codeHeader.panelHeader.
* This should fix the bug in the code plugin rendering too large a font. */ div.codeContent.panelContent { font-size: 12px; } div.codeHeader.panelHeader { font-size: 14px; font-weight: bold; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.