Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

How to limit signatures [PunBB & PhpBB 2]

Go down  Message [Page 1 of 1]

Zyon

Zyon
manager


Today I will show you how you can limited signature and add scrolling if signature is bigger.

Tutorial for PunBB

Go in:
AdminPanel -> Display -> Templates -> General -> viewtopic_body

Find this:
Code:
<div class="sig-content">
{postrow.displayed.SIGNATURE_NEW}
</div>

Change that with:

Code:
<div class="sig-content">
<div style="height: 100px; overflow: auto;">
{postrow.displayed.SIGNATURE_NEW}
</div>
</div>

You can change height 100px to smaller or higher

Tutorial for PhpBB2

Go in
AdminPanel -> Display -> Templates -> General -> viewtopic_body

Find this:

Code:
<div class="signature_div">
 {postrow.displayed.SIGNATURE}
 </div>

Change that with:

Code:
<div style="height: 100px; overflow: auto;"><div class="signature_div">
  {postrow.displayed.SIGNATURE}
  </div></div>

and that is all.

http://admins.forumotion.com

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum