XF 1.4 Removing Avatar from Member Card Pop-up

CiaranT

Member
I have figured out how to remove the avatar from most pages except the member card page.

What lines of code do I need to need to take out of the member card template in order to remove the avatar?

Thanks.
 
Try this:

Code:
.avatar img {
    display: none;
}

Then adjust the contents of the member card to fill in the space accordingly:

Code:
.xenOverlay.memberCard .userInfo {
    margin-left: 0;
}
 
Top Bottom