XF 2.3 Member pop up Tooltip text overlaps avatar

ActorMike

Well-known member
After my 2.3 upgrade, noticed the member text isn't aligned properly and overlaps the avatar on mobile devices only. Tried to figure it out in console mode, but don't see where to pad or align that text.

My second forum below (gray/black) doesn't have this issue.


Screenshot_20240916_185801_Edge.webp
Screenshot_20240916_185821_Edge.webp
 
Where is the avatar size specified in the ACP? It's a setting somewhere.

For now, I manually overroad it in the Extra.less to 100px and everything is aligned properly again.

.memberTooltip-avatar {
width: 100px;
}
 
.memberTooltip-avatar {
width: 100px;
}
The basic setting is 108px, which refers not to the size of the avatar itself, but to the size of the box containing the avatar.

Where is the avatar size specified in the ACP? It's a setting somewhere.
There are no settings in Style Properties to adjust the avatar size in different areas.
As previously mentioned, there must be some code or an addon causing this.
 
The basic setting is 108px,
The template shows it specified as width: (@_memberTooltip-padding * 2 + @_memberTooltip-avatarSize);
There are no settings in Style Properties to adjust the avatar size in different areas.
If you look at the member_tooltip.less template, it shows this being defined as a variable, not a fixed value, which means it is specified elsewhere, correct?

Code:
.memberTooltip-avatar
{
    display: table-cell;
    width: (@_memberTooltip-padding * 2 + @_memberTooltip-avatarSize);
    vertical-align: top;
}
 
Back
Top Bottom