# Hiding post buttons

**URL:** https://meta.discourse.org/t/hiding-post-buttons/24462
**Category:** Feature
**Created:** [January 26, 2015, 8:20pm UTC](https://meta.discourse.org/t/hiding-post-buttons/24462 "2015-01-26T20:20:24Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![avron](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/avron/32/38655_2.png) [@avron](https://meta.discourse.org/u/avron)
#### Post date: [January 26, 2015, 8:20pm UTC](https://meta.discourse.org/t/hiding-post-buttons/24462/1 "2015-01-26T20:20:24Z")

</div>

Is it possible to control the visibility of the buttons below a topic? I refer specifically to:  
 ![](https://global.discourse-cdn.com/meta/original/3X/b/7/b77b58ad3c5b4706d9fff3e285f2365f390df26b.png)

I’ve been able to hide the buttons within the post:  
 ![](https://global.discourse-cdn.com/meta/original/3X/c/5/c572457525109c6960d7772f2d0de246c139d5aa.png)

Using:  
 ![](https://global.discourse-cdn.com/meta/original/3X/6/7/6762db97801484e2fc1cfa52f62cbcecf86fe29e.png)

But do similar settings exist for the the buttons identified above?

---

<div class="post-metadata">

### Author: ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)
#### Post date: [January 26, 2015, 8:21pm UTC](https://meta.discourse.org/t/hiding-post-buttons/24462/2 "2015-01-26T20:21:52Z")

</div>

You can use CSS to do it.

---

<div class="post-metadata">

### Author: ![Ivan\_Rapekas](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ivan_rapekas/32/248924_2.png) [@Ivan\_Rapekas](https://meta.discourse.org/u/Ivan_Rapekas)
#### Post date: [December 19, 2021, 1:48pm UTC](https://meta.discourse.org/t/hiding-post-buttons/24462/4 "2021-12-19T13:48:18Z")

</div>

CSS examples:

```css
// Hide topic buttons
// Assign
#topic-footer-button-assign {
	display: none;
}

// Defer
#topic-footer-button-defer {
	display: none;
}

// Flag
#topic-footer-button-flag {
	display: none;
}

// Bookmark
#topic-footer-button-bookmark {
	display: none;
}

// Share
#topic-footer-button-share-and-invite {
	display: none;
}

```

or

```css
// Hide main buttons at once but Follow
#topic-footer-buttons .topic-footer-main-buttons {
	display: none;
}

```

or

```plaintext
// Hide all buttons, incl. Follow
#topic-footer-buttons {
	display: none;
}

```

To apply this code to external themes, you need to fork original Github repo, reinstall theme using your repo URL, apply this code to your repo (desktop.scss etc) commit changes and update theme in Discourse.
