Выделение тем и ответов на форуме by webo4ka.ru-выглядит изумительно,можно лишний раз украсить свой форум таким скриптом.
Установка: В общий вид страниц форума после $BODY$ ставим код
Код
<script>
$(function () {
$('.forumThreadTd').each(function () {
$(this).html('<div style="background:#cdcdcd; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px; border-radius:5px; behavior:url(border-radius.htc); color:#555; font-weight:700; width:35px; height:25px; line-height:25px; padding:5px 10px;">'+$(this).html()+'</div>');
});
$('.forumPostTd').each(function () {
$(this).html('<div style="background:#cdcdcd; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px; border-radius:5px; behavior:url(border-radius.htc); color:#555; font-weight:700; width:35px; height:25px; line-height:25px; padding:5px 10px;">'+$(this).html()+'</div>');
});
});
</script>