MyBB Community Forums

Full Version: Change font size in signature
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is there a way to edit the font size in signatures? thanks in advance...
Go to template:
ACP > Templates & Styles > Templates > {theme_name} Templates > Postbit Templates > postbit_signature

Find this:
{$post['signature']}

Change it to:
<div class="postbit_sig">{$post['signature']}</div>

Save the template.
Now open your theme's showthread.css in advanced edit mode:
ACP > Templates & Styles > Themes > {theme_name} > showthread.css > Edit Stylesheet : Advanced Mode

and add the following at the end:

.postbit_sig div, .postbit_sig div a {
font-size: 11px!important;
}

Change the value as required and save.
hi, thanks! is it also possible to make the signature "stay" at the bottom of the post? directly above the post buttons?