PDA

View Full Version : aligning $post[signature] to the very bottom right!


212rikanmofo
04-25-2002, 11:33 PM
i need help with aligning my $post[signature] variable in my postbit template to the ablsolute right and utmost bottom, it works and all, but there's still like maybe a space underneath it, i want it to be totally at the bottom, how can i do this? do i edit the postbit_signature template or do i edit the postbit template to do this and can someone post me an example please thanks.

Xanthine
04-26-2002, 12:18 AM
Do you have a picture or your postbit ? (preferably both)

212rikanmofo
04-26-2002, 01:10 AM
yes hold on:

here's my postbit_signature template
<br><br>
<p align=right>
----------------------<br>
<normalfont>$post[signature]</normalfont></p>

here's part of my postbit template
</TD>
</TR>
<TR>
<TD width="100%"><FONT
face="verdana, arial, helvetica" size=2>
<p>$post[message]</p>
<p>$post[attachment]</p>
<p>$post[editedby]</p>
<p>$post[signature]</p></font>
</TD>
</TR>
<TR>
<TD width="100%"></TD>
</TR>
</TBODY>
</TABLE>
</TD>
</TR>
</TBODY>
</TABLE>
</TD>
</TR>
</TBODY>
</TABLE>
<TABLE style="BORDER-COLLAPSE: collapse" borderColor=#111111
cellSpacing=0 cellPadding=0 width="100%" align=center
border=0>
<TBODY>
<TR>

any ideas please? right now my signature shows to the very right and the bottom, but it has like 1 or 2 word gap under that. I want it to have no gap at all under it.

Orlandu
04-26-2002, 02:39 AM
Well, you can make another table within the post itself. And have the cell with the post be 100% tall, and then the signature in a seperate cell... That should work.

Like this:

<TABLE height="100%" border="0">
<TR>
<TD height=100%><FONT
face="verdana, arial, helvetica" size=2>
<p>$post[message]</p>
<p>$post[attachment]</p>
</TD>
</TR>
<TR>
<TD>
<FONT
face="verdana, arial, helvetica" size=2>
<p>$post[editedby]</p>
<p>$post[signature]</p></font>
</TD>
</TR>
</TABLE>


Hope that helps.

212rikanmofo
04-26-2002, 08:48 PM
nope didn't work, same thing, still a word gap under the sig, didnt change at all... :(

Neo
05-04-2002, 03:06 AM
I need to figure this out aswell... If I get it I will post it for you.

Hwulex
02-12-2003, 02:02 AM
I have done this [Here (http://www.xaprief.com/forums/)]. It only works for Forums where there is no table border colour though, else a line is drawn across it. You could get round this with a style="" tag though.

Martin64
02-12-2003, 02:11 AM
Tested and worked for me...


<td colspan="2" align="right" valign="top">$post[signature]
</td>

Tony G
02-12-2003, 09:06 AM
There's a mod at vBT, called Signature Baseline. Code is given in there if you're un-sure.