Hi ...
fangen wir mal mit der Farbe an ... wenn ich das richtig gesehen habe ist das cellpic da schon verschwunden

bleibt also nur noch die Farbe ...
suche in der overall_header.tpl
Code: Alles auswählen
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px;
ersetze mit:
Code: Alles auswählen
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
background-color:#FF0000; font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px;
FF0000 ersetze du mit der Farbe deiner Wahl.
Damit der "Überschriftsbalken" wie du ihn so schön nennst nur noch einmal auftaucht suche in der index_body.tpl
Code: Alles auswählen
<!-- BEGIN catrow --></table>
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2" class="thCornerL" height="25" nowrap="nowrap"> Forum </th>
<th width="50" class="thTop" nowrap="nowrap"> Themen </th>
<th width="50" class="thTop" nowrap="nowrap"> Beiträge </th>
<th class="thCornerR" nowrap="nowrap"> Letzter Beitrag </th>
</tr>
<tr>
</tr>
<tr>
<td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
<td class="rowpic" colspan="3" align="right"> </td>
</tr>
<!-- BEGIN forumrow -->
<tr>
<td class="row1" align="center" valign="middle" height="50" height="25"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="25" height="20" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
<td class="row1" width="100%" height="50" height="28"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td class="row2" align="center" valign="middle" height="50" height="28"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" align="center" valign="middle" height="50" height="25"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
<!-- END forumrow -->
</table>
<br />
<!-- END catrow -->
ersetze mit:
Code: Alles auswählen
</table>
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2" class="thCornerL" height="25" nowrap="nowrap"> Forum </th>
<th width="50" class="thTop" nowrap="nowrap"> Themen </th>
<th width="50" class="thTop" nowrap="nowrap"> Beiträge </th>
<th class="thCornerR" nowrap="nowrap"> Letzter Beitrag </th>
</tr>
</table>
<br />
<!-- BEGIN catrow -->
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
<td class="rowpic" colspan="3" align="right"> </td>
</tr>
<!-- BEGIN forumrow -->
<tr>
<td class="row1" align="center" valign="middle" height="50" height="25"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="25" height="20" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
<td class="row1" width="100%" height="50" height="28"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td class="row2" align="center" valign="middle" height="50" height="28"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" align="center" valign="middle" height="50" height="25"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
<!-- END forumrow -->
</table>
<br />
<!-- END catrow -->
Das sollte passen ... vorher aber eine Sicherungskopie deiner bisherigen index_body.tpl erstellen
Markus