Released 2x How to Chnage Mobile Avatar Size?

m0nst3rx

Member
Registered
Joined
Oct 16, 2021
Messages
14
Points
13

Reputation:

Opera-Snapshot-2021-11-04-171529-localhost.png


im currently using xf 2.2.7 with ryzer pro 2.2.7
i want to change the avatar size in mobile view and make it look bigger
please tell me if someone know how to do it
thanks!
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,072
Points
173

Reputation:

Opera-Snapshot-2021-11-04-171529-localhost.png


im currently using xf 2.2.7 with ryzer pro 2.2.7
i want to change the avatar size in mobile view and make it look bigger
please tell me if someone know how to do it
thanks!
m0nst3rx
add this code

Less:
@media (max-width: @xf-messageSingleColumnWidth)
{
    .message:not(.message--forceColumns)
    {

        .message-avatar
        {
            margin-bottom: 0;

            .avatar
            {
                .m-avatarSize(@avatar-m);

                & + .message-avatar-online
                {
                    left: auto;
                    right: 0;
                }
            }
        }
    }
}

in extra.less
 
Top