[FIXED] [SG 2.0.1] Group avatar cropped

The problem can be solved by adding the following:
CSS:
    img {
        width: 100%;
    }



will look like this
CSS:
// Group avatar default (text dynamic)
.groupAvatar {
  display: flex;
  border-radius: @xf-avatarBorderRadius;
  overflow: hidden;

  &:hover {
    text-decoration: none;
  }
    
    img {
        width: 100%;
    }
}
 
to avoid this problem you have to insert the img tag in the tlg_style.less as described above.
 
Back
Top