Эти коды всегда ставим в поле HTML-верх, иначе не будут работать!

Убираем слово "Объявление"

Код:
<style>
#pun #pun-index #pun-announcement h2 span {display: none}
</style>

Убирает слово "Объявление" на странице постов:

Код:
<style>
#pun #pun-viewtopic #pun-announcement{display: none}
</style>

Изменяет цвет лини, отделяющий  подпись:

Код:
<style>
#pun #pun-viewtopic #pun-main .topic .container .post-body .post-box .post-content .post-sig dt {background-color: red}
</style>

Изменить фон таблиц:

Код:
<style>
#pun #pun-index #pun-main .category .container table .hasicon .alt1 .tcl,
#pun #pun-index #pun-main .category .container table .hasicon .alt2 .tcl,
#pun #pun-index #pun-main .category .container table .hasicon .alt1 .tc2,
#pun #pun-index #pun-main .category .container table .hasicon .alt2 .tc2,
#pun #pun-index #pun-main .category .container table .hasicon .alt1 .tc3,
#pun #pun-index #pun-main .category .container table .hasicon .alt2 .tc3,
#pun #pun-index #pun-main .category .container table .hasicon .alt1 .tcr,
#pun #pun-index #pun-main .category .container table .hasicon .alt2 .tcr  {background-image: url(Рисунок)} 
</style>

Изменить фоновой рисунок:

Код:
<style>
HTML, BODY {background-image: url(http://re.foto.radikal.ru/0709/47/22eea14069b5.jpg)}
</style>

Логотип:

Код:
<style>
#pun-title .title-logo {background-image: url(ССЫЛКА на картинку)}</style>

Делает по центру абсолютно всё на главной:

Код:
<style>
HTML, BODY , #pun, #pun #pun-index #pun-main .category .container table thead tr .tcl, #pun-main .category .container table .hasicon .alt1 .tcl .intd .tclcon, 
#pun-main .category .container table .hasicon .alt2 .tcl .intd .tclcon {text-align: center}
</style>

Размер текста и шрифт:

Код:
<style>
HTML, BODY {font-family:ШРИФТ ;font-size: Размер }
</style>

Шрифты можно брать лишь те, что закачены на сервер, узнать их можно нажав на синюю букву в "Ответе"
Размеры: xx-small, x-small, small, medium, large, x-large, xx-large

Все данные пользователя становятся по центру:

Код:
<style type="text/css">
.pa-adnote{ text-align: center;}
.pa-from{ text-align: center;}
.pa-reg{ text-align: center;}
.pa-posts{ text-align: center;}
.pa-reputation{ text-align: center;}
.pa-sex{ text-align: center;}
.pa-icq{ text-align: center;}
.pa-ip{ text-align: center;}
.pa-online{ text-align: center;}
.pa-age{ text-align: center;}
.pa-mailagent{ text-align: center;}
.pa-reg { text-align: center;}
.pa-avatar, .pa-title, .pa-author { text-align: center;}
.pa-time-visit{ text-align: center;}
.pa-last-visit{ text-align: center;}
.pa-fld1{ text-align: center;}
.pa-fld2{ text-align: center;}
.pa-fld3{ text-align: center;}
</style>

Использовать без дополнительных полей!

Делаем весь форум курсивом:

Код:
<style>
#pun #pun-index, #pun #pun-viewtopic, #pun .punbb{font-style: italic}
</style>

Убираем строку зарегистрированных пользователей:

Код:
<style type="text/css">
#pun #pun-index #pun-stats .statscon .container .item3 span, #pun #pun-index #pun-stats .statscon .container .item3 strong {display: none}
</style>

Скрываем список модераторов:

Код:
<style type="text/css">
.modlist {display: none;}
</style>

Цвет даты сообщения и курсив:

Код:
<style type="text/css">
#pun-main .post .permalink {font-style: italic; color: #FF0000;}
</style>

#FF0000 меняем на своё

Пока всё, позже напишу ещё!