XF 2.2 Message view custom profile field

badmonkey

New member
When browsing on a desktop, the user's custom title and custom profile field are both visible in the message view. On mobile platforms, the layout changes. Therefore the custom title remains visible beside the avatar but the custom profile field becomes hidden. How can this be resolved?

If the fix allows both be visible, that's fine. If it's a matter of choice I'd prefer the custom profile field be visible preferentially rather than the custom title.

Thanks in advance!
 
OK, worked it out. Here's the solution, lest anyone else needs to know. In extra.less:

Code:
.message:not(.message--forceColumns) .message-userExtras {
    display: inline-block;
    text-align: left;
    margin: 0
}

The user custom profile field will display on the right side, but that's fine for me.
 
Top Bottom