vote up 0 vote down star

I'm looking for a way to customize my < code > and < pre > tags in my blog.

I'm in need of custom CSS styles/codes. Anyone able to guide me to a few good examples?

flag

44% accept rate
If you give us some clues as to what you'd like, it'd help. Can you describe the sort of thing you're after, any kind of particular look/feel? – ricebowl Sep 6 at 9:52

2 Answers

vote up 0 vote down

The only thing I tend to like from <code> or <pre> blocks (incidentally, I'd advise against <pre> in general, since while it's still current it'd be better to use a descriptive named-div or span) is that it use a monospace font. Using a JS markdown script would be useful too. But from the CSS point of view:

pre,
code  {font-family: consolas, courier, monospace;
       font-size: 1em;
       line-height: 1.2em;
       white-space: pre; 
       background-color: #ccf; /* any colour's okay, 
       so long as it's different to the page-background  
       (for ease of recognition) and contrast to the text */
       color: #000; /* likewise the background-color comment */
       border: 1px solid #666;
       -moz-border-radius: 1em;
       -webkit-border-radius: 1em;
       border-radius: 1em; /* just in case */
       padding: 1em;
       margin: 1.2em 1em;
       width: 50%; /* or whatever you prefer */
       float: right;
       }
link|flag
vote up 2 vote down
code {
    font-family: Consolas, monospace;
}

There's an example! :)

link|flag
Very simplistic, that will work. But I was more inclined towards something like a block and 1. 2. 3. with highlighting etc. I guess I'll have to do ajax/javascript for that, eh? – NoCanDo Sep 6 at 13:03
If you want highlighting, I'd do it with a server-side language like PHP, or use a wordpress plugin that has already been created, such as: wordpress.org/extend/plugins/… – lhnz Sep 6 at 13:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.