XF 2.2 Sigs in mobile version?

Add this to your extra.less


CSS:
/* SIGNATURE ON MOBILE */
@media (max-width: @xf-responsiveNarrow)
{
    .message-signature { display: block !important; }
}
 
Thanks.
But that cuts the image short instead of resizing it.

I already have the following code in extra.less (in order to limit sig sizes, because frustratingly, for some reason that isnt a default feature of xenforo....)

Code:
.message-signature img
{
    max-width: 500px;
    max-height: 130px;
}

Is there a way to make it so that the full sig is displayed in mobile version, albeit resized as appropriate for the screen?
 
This works for me. Add to extra.less for your style(s):

CSS:
/* display signatures on mobile */
@media (max-width: 480px)
{.message-signature
    {display: block; }
}
 
Top Bottom