Quote:
Originally Posted by Mystics
Try this.
Delete within the template postbit_legacy:
Code:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
Search in the same template:
Code:
<!-- / edit note -->
</if>
</td>
</tr>
Add below it:
Code:
<tr>
<td class="alt2">
</td>
<td class="alt1" align="$stylevar[left]">
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
</td>
</tr>
|
Edit:
Oki, the right code is
Code:
<tr>
<td class="alt2"></td>
<td class="alt1">
<!-- / bottom signature -->
<!-- sig -->
<div>
<br />
<fieldset class="fieldset">
<legend><b>Signatur von $post[musername]</b></legend>
$post[signature]<br />
</fieldset>
</div>
<!-- / sig -->
</if>