# How to hide clicks count badge which next to the image link

**URL:** https://meta.discourse.org/t/how-to-hide-clicks-count-badge-which-next-to-the-image-link/79816
**Category:** Development
**Tags:** click-counter
**Created:** [5 בפברואר,‏ 2018,‏ 1:26pm UTC](https://meta.discourse.org/t/how-to-hide-clicks-count-badge-which-next-to-the-image-link/79816 "2018-02-05T13:26:16Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Denis\_Frosty\_Andreyc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/denis_frosty_andreyc/32/87114_2.png) [@Denis\_Frosty\_Andreyc](https://meta.discourse.org/u/Denis_Frosty_Andreyc)
#### Post date: [5 בפברואר,‏ 2018,‏ 1:26pm UTC](https://meta.discourse.org/t/how-to-hide-clicks-count-badge-which-next-to-the-image-link/79816/1 "2018-02-05T13:26:16Z")

</div>

I created a clickable image with a link, but I do not want the click counter to be displayed nearby. Can I remove it?

 ![%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0%20(646)](https://global.discourse-cdn.com/meta/original/3X/2/d/2d1004df3cd1c71ef67d0b0c9b8c2762791fff9a.png)

---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [5 בפברואר,‏ 2018,‏ 2:54pm UTC](https://meta.discourse.org/t/how-to-hide-clicks-count-badge-which-next-to-the-image-link/79816/2 "2018-02-05T14:54:51Z")

</div>

You can hide it via below custom CSS

```css
img + .badge-notification.clicks {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [24 בינואר,‏ 2024,‏ 4:15pm UTC](https://meta.discourse.org/t/how-to-hide-clicks-count-badge-which-next-to-the-image-link/79816/5 "2024-01-24T16:15:17Z")

</div>


