Seite 1 von 1

Editierhinweis soll ganz unten erscheinen

Verfasst: 24.08.2003 22:51
von ingo
Wenn man den eigenen Beitrag editiert hat, erscheint bekanntlich im Posting der Satz: Zuletzt bearbeitet von...
Wenn man nun nur eine Zeile geschrieben hat, dann prangt das ganz schön in der Mitte des Postings, ganz so, als wäre es ein wichtiger Bestandteil. Das stört mich ganz schön, ich hätte es gern in anderer Schriftart und kleiner in der letzten Zeile des Postings, egal, wie viele Zeilen nun geschrieben wurde. Hoffe, ich habe mich verständlich ausgedrückt :-?

Verfasst: 24.08.2003 22:55
von Leuchte
du müsstest in viewtopic_body.tpl {postrow.EDITED_MESSAGE} in eine extra zeile setzen sodass das unabhängig vom anderen text ganz unten steht. vielleicht hilft diese kleine modifikation weiter.. du müsstest dann {postrow.EDITED_MESSAGE} nur hinter oder vor {postrow.SIGNATURE} setzen

Code: Alles auswählen

######################################################## 
## Mod Title: Bottom-Aligned-Signature 
## Mod Version: 1.0.0 
## Author: John B. Abela <abela@phpbb.com> www.JohnAbela.Com 
## Description: This mod will align your Signature at the bottom of your post 
## 
## Installation Level: easy 
## Installation Time: 1-3 Minutes 
## Files To Edit: 1 
## phpBB2/templates/subSilver/viewtopic_body.tpl 
## 
## Included Files: none 
################################################################# 
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites 
################################################################# 
## 
## Author Note: 
## 
## Enjoy! Check out my guestbook @ www.johnabela.com/guestbook/ 
## 
################################################################# 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
################################################################# 

# 
#-----[ OPEN ]------------------------------------------ 
# 

/phpBB2/templates/subSilver/viewtopic_body.tpl 


# 
#-----[ FIND ]------------------------------------------ 
# 

<td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> 
<tr> 
<td width="100%"><a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" width="12" height="9" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0" /></a><span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen">&</span>& &{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> 
<td valign="top" align="right" nowrap="nowrap">{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td> 
</tr> 
<tr> 
<td colspan="2"><hr /></td> 
</tr> 
<tr> 
<td colspan="2"><span class="postbody">{postrow.MESSAGE}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td> 
</tr> 
</table></td> 


# 
#-----[ REPLACE, WITH ]------------------------------------------ 
# 

<td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="top"> 
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"> 
<tr> 
<td width="100%"><a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" width="12" height="9" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0" /></a><span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen">&</span>& &{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> 
<td valign="top" align="right" nowrap="nowrap">{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td> 
</tr> 
<tr> 
<td colspan="2"><hr /></td> 
</tr> 
<tr> 
<td colspan="2" HEIGHT="100%" VALIGN="TOP"><span class="postbody">{postrow.MESSAGE}</span><BR /><SPAN CLASS="gensmall">{postrow.EDITED_MESSAGE}</SPAN></td> 
</tr> 
<tr> 
<td colspan="2" VALIGN="BOTTOM"><SPAN CLASS="postbody">{postrow.SIGNATURE}</SPAN></td> 
</tr> 
</table></td> 



# 
#-----[ SAVE/UPLOAD ]------------------------------------------ 
# EoM

Verfasst: 24.08.2003 23:37
von ingo
Danke! :grin: