[spoiler="Скрин"][/spoiler]
[Table]Идёшь в ПУ/Управление дизайном/Таблица стилей (CSS): Там ищешь колонку она так называеться: /* forum Threads Style */[/Table]
[Table]После находешь в ней строки будет выглядить на подобие таких[/Table]
Code
.threadPinnedLink,.threadLink {font-weight:bold;}
a.threadLink:link {text-decoration:none; color:#5d5d5d;}
a.threadLink:visited {text-decoration:none; color:#5d5d5d;}
a.threadLink:hover {text-decoration:none; color:#000000;}
a.threadLink:active {text-decoration:none; color:#5d5d5d;}
[Table]И полность 5 строчек заменяешь на это:[/Table]
Code
.threadPinnedLink,.threadLink {font-weight:bold;}
a.threadLink:link {text-decoration:none; color:##98B400;}
a.threadLink:visited {text-decoration:none; color:#98B400;}
a.threadLink:hover {text-decoration:underline; color:#98B400;}
a.threadLink:active {text-decoration:none; color:#98B400;}