Seite 1 von 1

Grafik über der Signatur

Verfasst: 27.05.2007 21:49
von Dawn
Ich würde gerne den Strich:

"_________________" der über einer Signatur angezeigt wird durch eine Grafik ersetzen. Allerdings finde ich einfach die Stelle wo das gemacht werden muss, nicht.

In viewtopic_body.tpl

Sehe ich diese Linie nicht:

Code: Alles auswählen

<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
	<tr align="right">
		<td class="catHead" colspan="2" height="28"><span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a> &nbsp;</span></td>
	</tr>
	{POLL_DISPLAY}
	<tr>
		<th class="thLeft" width="150" height="26" nowrap="nowrap">{L_AUTHOR}</th>
		<th class="thRight" nowrap="nowrap">{L_MESSAGE}</th>
	</tr>
	<!-- BEGIN postrow -->
	<tr>
		<td width="150" align="left" valign="top" class="{postrow.ROW_CLASS}" background="333333"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /></td>
		<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">&nbsp;</span>&nbsp; &nbsp;{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>
Ebenso ist sie in der css-Datei nicht zu sehen.. oder ich schau an der falschen Stelle. Kann mir wer helfen?

Verfasst: 27.05.2007 22:02
von nickvergessen
Die ist in der viewtopic.php

Code: Alles auswählen

	if ( $user_sig != '' )
	{
		$user_sig = '<br />_________________<br />' . str_replace("\n", "\n<br />\n", $user_sig);
	}

	$message = str_replace("\n", "\n<br />\n", $message);

Verfasst: 27.05.2007 22:22
von Dawn
Wow klasse! Dankeschön! Da hätte ich nie gesucht *g*
Hach super, da wird sich meine Grafikerin freuen.

Verfasst: 28.05.2007 01:21
von Elvis
und wenn Du das für die PN auch ändern möchtest, mußte dieses in der privmsg.php machen.
siehe Code von nickvergessen