PDA

View Full Version : bottom line sig


Snitz
05-28-2005, 09:01 AM
how can I make the signature aligns at the bottom of each post ?

Big J
06-17-2005, 04:00 PM
BUMP! I need to know too!

Snitz
06-18-2005, 07:44 PM
Bump!

Big J
06-21-2005, 03:05 PM
C'mon guys! Most of you are genius coders! someone must to know how to do this. :ermm:

KevinL
06-21-2005, 03:07 PM
There is a hack at Vbtemplates that does this.

http://www.vbulletintemplates.com/mods/forums.php

Andreas
06-21-2005, 03:08 PM
If seomebody ever gets this working i'll start praying to him.

KevinL
06-21-2005, 03:14 PM
If seomebody ever gets this working i'll start praying to him.
I have this working on my forum.

It makes the whole post bit area a bit larger but at least the sigs arent all over the place :laugh: It makes everything a little more uniform.

Andreas
06-21-2005, 03:22 PM
Can you enlighten me how you did that?
I've tried for ages but can't get it working properly on my board.

KevinL
06-21-2005, 03:31 PM
Of course :)

All I did was follow this thread: http://www.vbulletintemplates.com/mods/showthread.php?t=5697 then I changed the section that moonclamp suggested.

And really thats it.

Big J
06-21-2005, 05:30 PM
Thanks guys. I just registered there so I could get the code but it says I dont have sufficiant permissions to view. Any idea how many posts I need to make to get access? Thanks again.

KevinL
06-21-2005, 05:46 PM
Thanks guys. I just registered there so I could get the code but it says I dont have sufficiant permissions to view. Any idea how many posts I need to make to get access? Thanks again.
Dont really know to be honest I know they have a support forum though. Maybe you could ask there. :)

Princeton
06-21-2005, 07:51 PM
it's easy ... just add another row
view attached image

styleforum
07-21-2005, 04:38 PM
There's got to be a way to do this. I have tried a few different ways and they aren't working right. Ikonboard can do it - I looked through its templates and I can't figure it out. That other site isn't working. Can someone help?

VaaKo
09-25-2005, 10:42 AM
anyone got this working?

Bigwrenn
10-04-2005, 04:05 AM
Try this and it should work, and it should work on both the regular postbit and legacy.

Open postbit:

# Find:

<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

# Remove it #

# Find:

<!-- / edit note -->
</if>

</td>
</tr>

# Directly below this add:

<tr>
<td class="alt2">
</td>
<td class="alt1" align="$stylevar[right]">
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
</td>
</tr>
---------------------------------------------------------------------------------------------
Done! To align the signature on the left hand side just change the align="$stylevar[right]"> to align="$stylevar[left]">. Hope this helps.