# Any way to remove the image in an empty comments section?

**URL:** https://community.glideapps.com/t/any-way-to-remove-the-image-in-an-empty-comments-section/75318
**Category:** Ask for Help
**Tags:** custom-css
**Created:** [July 31, 2024, 6:17pm UTC](https://community.glideapps.com/t/any-way-to-remove-the-image-in-an-empty-comments-section/75318 "2024-07-31T18:17:11Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Jarvis](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jarvis/32/81377_2.png) [@Jarvis](https://community.glideapps.com/u/Jarvis)
#### Post date: [July 31, 2024, 6:17pm UTC](https://community.glideapps.com/t/any-way-to-remove-the-image-in-an-empty-comments-section/75318/1 "2024-07-31T18:17:11Z")

</div>

Hi, is there any way to remove this image in a comment component when there are no comments? It takes up a lot of real estate and would prefer it to be gone.

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/f/b/fb4ccb49cc8fcfee4167a1dd230fb614b7d58e2e.png)

---

<div class="post-metadata">

### Author: ![fk1214](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/fk1214/32/71058_2.png) [@fk1214](https://community.glideapps.com/u/fk1214)
#### Post date: [May 9, 2025, 5:21pm UTC](https://community.glideapps.com/t/any-way-to-remove-the-image-in-an-empty-comments-section/75318/2 "2025-05-09T17:21:48Z")

</div>

I’m so late but need this right now 😅 Tried this but for some reason doesn’t work even when I set my comments component’s class to “hide-comments-image” (and yes, Preview Custom CSS is on). Anyone know how to remove the image on some of my comments components? 😅

```auto
.hide-comments-image img[src="https://go.glideapps.com/images/comments-illustration.png"] {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [May 10, 2025, 1:02am UTC](https://community.glideapps.com/t/any-way-to-remove-the-image-in-an-empty-comments-section/75318/3 "2025-05-10T01:02:45Z")

</div>

```auto
div[data-testid="empty-comments"] {
display: none;
}

```
