XF 2.3 Why are signatures not visible on mobile?

To answer my own question: It has been asked numerous times since 2018 and is an intentional behaviour with no intention to fix. To change it one can edit the extra less. Suggestions over the years from various threads:

There may be a style property for it, but if not you can probably add this to your EXTRA.less:

Code:
@media (max-width: 480px) {
    .message-signature{ display: block; }
}

By default they don’t show on mobiles you can add this to extra.less

CSS:
@media (max-width: 480px)
{.message-signature

{display: block; }
}

You could add the following to your style's extra.less template:

CSS:
@media (max-width: 480px)
{
    .message-signature { display: block !important; }
}

Thanks, that solution sort of worked for me, but I had to do the following for it to work on Android and Apple:

CSS:
@media (max-width: @xf-responsiveNarrow)
{
.message-signature { display: block !important; }
}
 
Back
Top Bottom