MyBB Community Forums

Full Version: Move the signature position
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

MikeInToshx

Hey guys,

I wonder if there is a way to edit the position of the signature..
Is it possible to move it more down? Close to the bottom.

Cheers!

[attachment=30868]
in postbit templates >> postbit_classic find

			{$post['attachments']}
			{$post['signature']}


and remove
			{$post['signature']}

next

in same postbit_classic template find:

<td class="{$altbg}" style="white-space: nowrap; text-align: center; vertical-align: middle;"><span class="smalltext">{$post['postdate']} {$post['posttime']}</span></td>

and ABOVE that line, insert this

<tr><td class="{$altbg}"><span class="smalltext">{$post['iplogged']}</span></td><td class="{$altbg}">{$post['signature']}</td></tr>

click SAVE, your members signature will now look like this ... - in a column - dropped to bottom of post / no longer floating -

[Image: JybgoVh.png]

.

MikeInToshx

Hey thanks but, is it possible without the border? Also this is an added table right? This would make my postbit body larger and its large already lol.

I hope this picture explains it better:

[attachment=30870]

Thankyou for the help.
easiest way is to do like this:

just add
<br />
much as you want before
{$post['signature']}

MikeInToshx

Yeah thats probably the best for now. Cheers.