К простому варианту (редактирование end_this_cat) добавить:
1. В css найти
.borderwrap h3,
.maintitle,
.maintitlecollapse{
background: url(style_images/<#IMG_DIR#>/tile_cat.gif);
border: 1px solid #FFF;
border-bottom: 1px solid #5176B5;
color: #FFF;
font-size: 12px;
font-weight: bold;
margin: 0px;
padding: 8px;
}
Заменить на
.borderwrap h3,
.maintitle,
.maintitle_new,
.maintitlecollapse{
background: url(style_images/<#IMG_DIR#>/tile_cat.gif);
border: 1px solid #FFF;
border-bottom: 1px solid #5176B5;
color: #FFF;
font-size: 12px;
font-weight: bold;
margin: 0px;
padding: 8px;
}
.maintitle_new{
border:0;
border-bottom: 1px solid #5176B5;
}
Найти
.maintitle a:link,
.maintitle a:visited,
.maintitlecollapse a:link,
.maintitlecollapse a:visited{
background: transparent;
color: #FFF;
text-decoration: none;
}
.maintitle a:hover,
.maintitle a:active,
.maintitlecollapse a:hover,
.maintitlecollapse a:active{
background: transparent;
color: #F1F1F1;
}
Заменить на
.maintitle a:link,
.maintitle a:visited,
.maintitle_new a:link,
.maintitle_new a:visited,
.maintitlecollapse a:link,
.maintitlecollapse a:visited{
background: transparent;
color: #FFF;
text-decoration: none;
}
.maintitle a:hover,
.maintitle a:active,
.maintitle_new a:hover,
.maintitle_new a:active,
.maintitlecollapse a:hover,
.maintitlecollapse a:active{
background: transparent;
color: #F1F1F1;
}
skin_boards > CatHeader_Expanded
Весь код заменить на
<div class="borderwrap"><table class='ipbtable' cellspacing="1">
<tr>
<th class="maintitle_new" colspan="2" width="66%"><{CAT_IMG}> <a href="{$this->ipsclass->base_url}showforum={$data['id']}">{$data['name']}</a></th>
<th class="maintitle_new" style='text-align:center' width="7%">{$this->ipsclass->lang['topics']}</th>
<th class="maintitle_new" style='text-align:center' width="7%">{$this->ipsclass->lang['replies']}</th>
<th class="maintitle_new" width="35%">{$this->ipsclass->lang['last_post_info']}</th>
</tr>
skin_boards > subheader
Весь код заменить на
<div class="borderwrap"><table class='ipbtable' cellspacing="1">
<tr>
<th class="maintitle_new" colspan="2" width="66%"><{CAT_IMG}> <a href="{$this->ipsclass->base_url}showforum={$data['id']}">{$data['name']} {$this->ipsclass->lang['sub_forum_title']}</a></th>
<th class="maintitle_new" style='text-align:center' width="7%">{$this->ipsclass->lang['topics']}</th>
<th class="maintitle_new" style='text-align:center' width="7%">{$this->ipsclass->lang['replies']}</th>
<th class="maintitle_new" width="35%">{$this->ipsclass->lang['last_post_info']}</th>
</tr>
Если скин отличается от дефолтного, решение может быть другим.