Live Archives CSS Mess
Here’s a quick fix for a CSS issue that has plagued my K2 installations of the Extended Live Archive (or Better Live Archive as it is now called) plugin. See below, notice all the text is jumbled as if there were no line space between all the items. This appears in Safari / Firefox on the mac, I don’t know why this hasn’t been solved elsewhere.

You need to navigate to the plugin directory in your wordpress install, then under ‘af-extended-live-archive/includes/’ you’ll see a file called ef-ela-style.css open this in a text editor and change the lines:
#af-ela-post-chrono li, #af-ela-post-cats li, #af-ela-post-tags li {
position: relative;
font-size: 1.1em;
line-height: 1.7em;
color: #bbb;
margin: 0 15px;
padding: 1px 20px;
}
to:
#af-ela-post-chrono li, #af-ela-post-cats li, #af-ela-post-tags li {
position: relative;
font-size: 1.1em;
line-height: 1.7em;
height: 1.7em;
display: block;
color: #bbb;
margin: 0 15px;
padding: 1px 20px;
}
Enjoy. Oh, and Meta Comment has an Archive Page again!