Находим в CSS следующие строчки:
Code
/* Forums Styles */
.forumNameTd,.forumLastPostTd {padding:2px;background:#FFFFFF}
.forumIcoTd,.forumThreadTd,.forumPostTd {padding:2px;background:#F2F2F2}
.forumLastPostTd,.forumArchive {padding:2px;font-size:7pt;}
Параметры могут быть другие, начало у всех одинаковое.
Сразу после этих строчек вставляем следующие:
Code
td.forumLastPostTd,
td.forumIcoTd,
td.threadIcoTd,
td.forumNameTd,
td.threadNametd,
td.forumPostTd,
td.threadPostTd,
td .threadViewTd,
td.threadAuthTd,
td.forumThreadTd,
td.forumLastPostTd {border: zpx #ffffff solid;}
table.gTable tr:hover td.forumLastPostTd,
table.gTable tr:hover td.forumIcoTd,
table.gTable tr:hover td.threadIcoTd,
table.gTable tr:hover td.forumNameTd,
table.gTable tr:hover td.threadNametd,
table.gTable tr:hover td.forumPostTd,
table.gTable tr:hover td.threadPostTd,
table.gTable tr:hover td.threadViewTd,
table.gTable tr:hover td.threadAuthTd,
table.gTable tr:hover td.forumThreadTd,
table.gTable tr:hover td.threadLastPostTd,
table.gTable tr:hover td.forumLastPostTd {background:#7fff00;}
В этой строчке background можно заменить на любой цвет.
Code
table.gTable tr:hover td.forumLastPostTd {background:#7fff00;}