S smallwheels Well-known member Aug 31, 2024 #2 I have the same question and see the same behavior on 2.2.16P2. Upvote 0 Downvote
S smallwheels Well-known member Aug 31, 2024 #3 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: Jake B. said: 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; } } Click to expand... Mr Lucky said: By default they don’t show on mobiles you can add this to extra.less CSS: @media (max-width: 480px) {.message-signature {display: block; } } Click to expand... Ozzy47 said: You could add the following to your style's extra.less template: CSS: @media (max-width: 480px) { .message-signature { display: block !important; } } Click to expand... gatoo said: 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; } } Click to expand... Upvote 0 Downvote
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: Jake B. said: 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; } } Click to expand... Mr Lucky said: By default they don’t show on mobiles you can add this to extra.less CSS: @media (max-width: 480px) {.message-signature {display: block; } } Click to expand... Ozzy47 said: You could add the following to your style's extra.less template: CSS: @media (max-width: 480px) { .message-signature { display: block !important; } } Click to expand... gatoo said: 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; } } Click to expand...