Limit Signature Size

Stimo

Active member
Is there anyway to have a max height and width for user signatures? is there a mod for it?
 
There is a mod, I think, but it depends exactly what you want to do.

One thing you could do, is add this to EXTRA.css:

Code:
.message .signature
{
max-height: 50px;
overflow: hidden;
}

This makes the signature div a maximum height of 50px and anything beyond that is hidden.

For example:

small_sig.webp


From this post: http://xenforo.com/community/threads/familyguyfans-com.33092/#post-377975

If you actually want to prevent people from even attempting to have a large signature then that will need an add-on.

EDIT: Such as this one: http://xenforo.com/community/resources/signature-restriction-advanced-permissions.717/
 
There is a mod, I think, but it depends exactly what you want to do.

One thing you could do, is add this to EXTRA.css:

Code:
.message .signature
{
max-height: 50px;
overflow: hidden;
}

This makes the signature div a maximum height of 50px and anything beyond that is hidden.

For example:

View attachment 30928


From this post: http://xenforo.com/community/threads/familyguyfans-com.33092/#post-377975

If you actually want to prevent people from even attempting to have a large signature then that will need an add-on.

EDIT: Such as this one: http://xenforo.com/community/resources/signature-restriction-advanced-permissions.717/
we are in 2020 now, is there any new solution now? the add on link above is restricted
 
Maybe this one can help

 
Top Bottom