# How to Pin topic to top?

**URL:** <https://meta.discourse.org/t/how-to-pin-topic-to-top/65163>\
**Category:** Support\
**Created:** [2017年六月27日 02:48 UTC](https://meta.discourse.org/t/how-to-pin-topic-to-top/65163 "2017-06-27T02:48:04Z")\
**Posts on this page:** 1\
**Showing post:** 9

<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:** [2017年六月27日 12:58 UTC](https://meta.discourse.org/t/how-to-pin-topic-to-top/65163/9 "2017-06-27T12:58:25Z")

</div>

You can hide the button Pinned-Unpinned and the pin icon with CSS  
Something like this should work:

```
.pinned-options {
    display: none;
}
.topic-status .fa.fa-thumb-tack {
    display: none;
}

```

If your users can’t see the pin icon they can’t click on to unpin a topic, the same thing if they can’t see the button.

(If you _really really really_ want to do it)

---

_[View the full topic](https://meta.discourse.org/t/how-to-pin-topic-to-top/65163)._
