XF 2.0 Remove Avatar from Latest posts

picom

Active member
Is there any way to remove the avatar from new posts? I want to keep Avatars inside posts but no need for the index page.

Thanks

Screenshot (1).webp
 
Place this in extra.less:
Code:
.structItem-cell.structItem-cell--icon {
    display: none;
}

If you want to increase the padding a little after it's removed, also add:

Code:
.structItem-cell.structItem-cell--main {
    padding-left: 15px;
}
adjust to your liking.
 
Top Bottom