# Is it possible to remove the dates of posts on the forum?

**URL:** https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122
**Category:** Development
**Tags:** css
**Created:** [3월 29, 2018, 12:34오후 UTC](https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122 "2018-03-29T12:34:12Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Scott\_G\_Overend](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/scott_g_overend/32/82890_2.png) [@Scott\_G\_Overend](https://meta.discourse.org/u/Scott_G_Overend)
#### Post date: [3월 29, 2018, 12:34오후 UTC](https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122/1 "2018-03-29T12:34:12Z")

</div>

Is there a way to remove the dates on forum posts? My forum has a lot of content, but posts are more sporadic… I don’t want to scare people away instantly

---

<div class="post-metadata">

### Author: ![dax](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/dax/32/244677_2.png) [@dax](https://meta.discourse.org/u/dax)
#### Post date: [3월 29, 2018, 12:55오후 UTC](https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122/2 "2018-03-29T12:55:40Z")

</div>

Something like this should work:

```
.post-info.post-date {
    display: none;
}

```

The timeline on the right will be still visible, but you will not see the date at the top right of the various posts

 ![j6TGbC7](https://global.discourse-cdn.com/meta/original/4X/e/2/1/e210f06a2673fdd8f048de2532736bb5c9a09de3.png)

If you want to remove also the Activity column from the homepage (if the homepage is Latest) you can also add:

```
.activity.sortable.num, .num.age.activity {
    display: none;
}

```

If it’s Categories:

```
.topic-last-activity {
    display: none;
}

```

---

<div class="post-metadata">

### Author: ![Scott\_G\_Overend](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/scott_g_overend/32/82890_2.png) [@Scott\_G\_Overend](https://meta.discourse.org/u/Scott_G_Overend)
#### Post date: [3월 30, 2018, 7:12오전 UTC](https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122/3 "2018-03-30T07:12:36Z")

</div>

Thank you! This is brilliant!

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [7월 31, 2020, 4:39오후 UTC](https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122/4 "2020-07-31T16:39:22Z")

</div>



---

<div class="post-metadata">

### Author: ![j.jaffeux](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/j.jaffeux/32/60297_2.png) [@j.jaffeux](https://meta.discourse.org/u/j.jaffeux)
#### Post date: [7월 31, 2020, 7:24오후 UTC](https://meta.discourse.org/t/is-it-possible-to-remove-the-dates-of-posts-on-the-forum/84122/5 "2020-07-31T19:24:43Z")

</div>


