MyBB Community Forums

Full Version: signature adjustment
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to move the signature down. I think it sits a little to high. I found where I can move the signature itself, but where do I find the line to move it down as well? I've searched all over the templates in the admin section. Thanks in advance.
In the postbit template, find the text
<p>$post[message]</p>
$attachments
$signature
and change it into something like

<p>$post[message]</p>
$attachments
<br><br>
$signature
the postbit template or postbit_signature are your best bet..
Tochjo Wrote:In the postbit template, find the text
<p>$post[message]</p>
$attachments
$signature
and change it into something like

<p>$post[message]</p>
$attachments
<br><br>
$signature

Thanks for your help. I found this part, but what about the line that seperates the post with the signature? _________________________ Where do I find this? I would like to move this down as well. Thanks in advance!
postbit_signature as Chris said. So, remove <br><br> from

<p>$post[message]</p>
$attachments
<br><br>
$signature

and make postbit_signature into this:

<br><br>
<hr size="1" width="25%" align="left" />
<br><br>
$post[signature]

or however you want it.
Thanks!