# Removing avatars in category view

**URL:** https://meta.discourse.org/t/removing-avatars-in-category-view/29036
**Category:** Support
**Created:** [5월 20, 2015, 5:15오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036 "2015-05-20T17:15:06Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Ethosyde](https://avatars.discourse-cdn.com/v4/letter/e/65b543/32.png) [@Ethosyde](https://meta.discourse.org/u/Ethosyde)
#### Post date: [5월 20, 2015, 5:15오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036/1 "2015-05-20T17:15:06Z")

</div>

Is there a way to remove avatars from the main all category view? I want them to show on posts but not in category view.

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [5월 20, 2015, 8:41오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036/2 "2015-05-20T20:41:48Z")

</div>

Yes, just filter the column in CSS.

---

<div class="post-metadata">

### Author: ![Ethosyde](https://avatars.discourse-cdn.com/v4/letter/e/65b543/32.png) [@Ethosyde](https://meta.discourse.org/u/Ethosyde)
#### Post date: [5월 21, 2015, 4:13오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036/3 "2015-05-21T16:13:53Z")

</div>

Okay… How? Because I am noob elite haha

---

<div class="post-metadata">

### Author: ![Pugwash](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pugwash/32/3760_2.png) [@Pugwash](https://meta.discourse.org/u/Pugwash)
#### Post date: [5월 21, 2015, 4:45오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036/4 "2015-05-21T16:45:32Z")

</div>

Try adding this to a custom style sheet:

```
.topic-list .posters {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![Ethosyde](https://avatars.discourse-cdn.com/v4/letter/e/65b543/32.png) [@Ethosyde](https://meta.discourse.org/u/Ethosyde)
#### Post date: [5월 21, 2015, 5:10오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036/5 "2015-05-21T17:10:54Z")

</div>

That worked, thank you so much.

---

<div class="post-metadata">

### Author: ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)
#### Post date: [5월 21, 2015, 5:18오후 UTC](https://meta.discourse.org/t/removing-avatars-in-category-view/29036/6 "2015-05-21T17:18:01Z")

</div>


