XF 2.0 Signature Image Sizes

Flagy_

Active member
Hey,
How can I decrease the size of the image from the signature, so users won't be able to upload images like this big?

Screenshot_1.webp
 
https://xenforo.com/community/threads/signature-size-limit.27384/
https://xenforo.com/community/threads/resizing-signature-images-having-a-limit.18978/
https://xenforo.com/community/threads/limit-graphics-in-sig-file-to-one.24812/#post-302093
https://xenforo.com/community/threads/add-limit-to-signature-image-size.143315/

or;
extra.less add code;

CSS:
<xen:comment>Limiting image sizes in signatures</xen:comment>
<xen:if is="@enableResponsive">
    @media (min-width:700px) {
        .signature.messageText img {
        max-height: 125px !important;
        max-width: 550px !important;
        }
    }
    @media (min-width:481px) {
         .signature.messageText img {
        max-height: 125px;
        }
    }
</xen:if>

Is it enough? :):p
 
Top Bottom