Versuchen wir es.
Ich habe es noch nicht getestet. Also unbedingt Backup anlegen von index.php und index_body.tpl !
öffne
index.php
suche:
Code: Alles auswählen
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : $forum_data[$j]['username'];
danach einfügen:
Code: Alles auswählen
$last_post_click = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'];
suche:
danach einfügen:
öffne
index_body.tpl
suche:
Code: Alles auswählen
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
ersetze durch:
Code: Alles auswählen
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap" onclick="window.location.href='{catrow.forumrow.LAST_POST_CLICK}'"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
Auch hier kannst Du die Farbänderung wieder mit, dem oben erwähnten, "onmouseover" erreichen .
FatFreddy