
06-07-2006, 11:14 PM
|
|
|
Join Date: Oct 2005
Posts: 337
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
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>
|
That did the trick
|