XF 1.5 How to remove avatar corner icon on threadlist (forumview)

reddy ink

Active member
Would like to get rid of this upload_2015-12-14_16-33-24.webp icon so that it looks like XF forumupload_2015-12-14_16-34-18.webp
 

Attachments

  • upload_2015-12-14_16-34-15.webp
    upload_2015-12-14_16-34-15.webp
    3.7 KB · Views: 2
Simplest method is to remove it via CSS:
Code:
.discussionListItem .posterAvatar .miniMe { display: none; }

Otherwise, you can remove the HTML from the template.
 
Top Bottom