Right now, the titles in the last posts block gets cut
after a couple of characters. While this can make sense
layout wise, it will render some titles unreadable. How
about using the approach other forums are using?
Adding a title-attribute enables clients to hover over
the title getting the full title in return. Written as
pseudo-code:
if(title too long) {
shorten_title
output(<a href="..." title="long title">short title</a>)
}
further reading: