Hacking Freshy Theme to play well with Code Markup plugin
30 12 2006The Freshy Theme is sweeeet, but when you install the Code Markup plugin, the stylesheet for Freshy makes the code display kinda funny since the styles for pre and code are the same. The result is a double-nested code segment. Just open up themes/freshy-10/style.css and find the pre, code section and make it look like this (changes are in red):
pre {
font: 1em 'Courier New', Courier, Fixed, monospace;
font-size : 100%;
color: #000;
}
code {
display:block;






