Raymond Camden's Blog Rss

Important Update for BlogCFC Users

2

Posted in | Posted on 07-26-2007 | 5,736 views

If you use BlogCFC, please edit your style sheets so that the code style adds "courier new" to the list of fonts and changes the size to 1em. For a while now I've been wondering why code blocks were small on BlogCFC sites, but only on my Mac. I want to thank Chris Jordan for sending me the fix and sharing it on the cfbloggers listserv.

Oops, forgot to paste the final code:

view plain print about
1.code {
2    font-family: "courier new",courier,monospace;
3    font-size: 1em;
4    color: black;
5    border: solid thin #0000cc;
6    background-color: #ffffcc;
7    overflow: auto;
8    max-height: 200px;
9 padding: 4px 4px 4px 4px;
10 line-height: 15px;
11     margin:5px 0 5px 0;    
12}

Comments

[Add Comment] [Subscribe to Comments]

Great fix, that was most annoying when on the mac!
To clarify, that's in includes/style.css.