Log in

View Full Version : Signature at bottom of post


Ohiosweetheart
03-25-2006, 06:41 AM
I've looked and haven't found this one.

Is there a hack that will keep the signature at the BOTTOM of a users post?
As it is, the signature comes right up under a post and if the post is short, there's alot of space between the members' signature content and the bottom of the postbit. We had a hack for this when I ran a phpBB board.

Does anyone know?

Freesteyelz
03-25-2006, 08:02 AM
Well, this code below should work:

Find in postbit_legacy:

<if condition="$post['signature']">


And add below:


<!-- bottom signature -->
</td>
</tr>
<tr>
<td class="alt2"></td>
<td class="alt1">
<!-- / bottom signature -->


That should drop the signature to the bottom-left of the post.

Ohiosweetheart
03-25-2006, 11:53 AM
well... it worked, but broke up the style, lol. Take a look here using the LS7- Rude style which is the one I'm trying to get the sig on the bottom of.

http://exquisitelyerotic.net/forums/showpost.php?p=39647&postcount=961

this is the entire signature code:

<if condition="$post['signature']"><!-- bottom signature -->
</td>
</tr>
<tr>
<td class="alt2"></td>
<td class="alt1">
<!-- / bottom signature -->
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

Mark.B
03-25-2006, 12:45 PM
This should do it:
https://vborg.vbsupport.ru/showthread.php?t=98197

Not tested it myself though I'm still on 3.0 with the old version of that hack included.

hiiped
03-25-2006, 03:22 PM
well... it worked, but broke up the style, lol. Take a look here using the LS7- Rude style which is the one I'm trying to get the sig on the bottom of.

http://exquisitelyerotic.net/forums/showpost.php?p=39647&postcount=961

this is the entire signature code:

<if condition="$post['signature']"><!-- bottom signature -->
</td>
</tr>
<tr>
<td class="alt2"></td>
<td class="alt1">
<!-- / bottom signature -->
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

THIS WORKS

<if condition="$post['signature']">


<!-- bottom signature -->
</td>
</tr>
<tr>
<td class="alt2"></td>
<td class="alt1">
<!-- / bottom signature -->


<!-- sig -->
<div>
<hr> <br />
$post[signature]
</div>
<!-- / sig -->
</if>

for me in postbit_legacy

Freesteyelz
03-25-2006, 07:18 PM
Yeah. It was meant for the default postbit_legacy style. I'll need to see Rude's style in order to make the adjustments. Though, I couldn't see your board because it requires registration.

well... it worked, but broke up the style, lol.