Seite 1 von 1
Link, letzten Beitrag verschieben
Verfasst: 15.09.2005 13:58
von darot
Hallo Leute.
Wollte fragen wie ich den link letzten Beitrag, meine damit dieses Zeichen
[ externes Bild ] verschieben kann.
Würde dieses Zeichen gerne neben dem Autor angezeigt haben. Jetzt ist es in der gleichen Linie wie das Datum und die Zeit.
Wenn aber heute einen Beitrag geschrieben wird, wird dieses Zeichen zwischen dem Autor und dem Datum verschoben. Denke das ist wegen dem langen Datum das heute ist.
Hier
http://www.haustierforum.ch/phpBB2/index.php kann man es sehen.
Gruss, darot
Verfasst: 15.09.2005 14:13
von FatFreddy
Schau mal in diesen Thread:
http://www.phpbb.de/viewtopic.php?p=555385
Sollte auch dir helfen.
FatFreddy
Verfasst: 15.09.2005 14:29
von MichelM
poste mal bitte deinen code, wie du dieses Zeichen in die Zelle eingefügt hast!
Michèl
Verfasst: 15.09.2005 17:21
von darot
Hier der Code von der index_body.tpl
Code: Alles auswählen
<!-- BEGIN forumrow -->
<tr>
<td class="row1" align="center" valign="middle" height="50"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
<td class="row1" width="100%" height="50"><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"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td class="row2"width="250" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
<!-- END forumrow -->
Verfasst: 15.09.2005 17:27
von darot
Hier noch die index.php
Code: Alles auswählen
}
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $forum_data[$j]['topic_id']). '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
$last_post .= $last_post_time . ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a><br>' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
}
Verfasst: 15.09.2005 17:38
von FatFreddy
Sorry, stelle gerade fest, daß ich Deinen ersten Beitrag nicht richtig gelesen habe.
Ersetze den geposteten Ausschnitt der Index.php mit Folgendem:
Code: Alles auswählen
}
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $forum_data[$j]['topic_id']). '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
$last_post .= $last_post_time . '<br>' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a>';
}
FatFreddy
Verfasst: 15.09.2005 19:33
von darot
Hi FatFreddy
Es hat funktioniert

.
Vielen Dank für deine Hilfe.
Gruss, darot