# Hide 'Create Topic' on home page?

**URL:** https://meta.discourse.org/t/hide-create-topic-on-home-page/51732
**Category:** Development
**Tags:** css
**Created:** [2016年十月19日 11:46 UTC](https://meta.discourse.org/t/hide-create-topic-on-home-page/51732 "2016-10-19T11:46:33Z")
**Posts on this page:** 1
**Showing post:** 7

<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: [2016年十月19日 12:34 UTC](https://meta.discourse.org/t/hide-create-topic-on-home-page/51732/7 "2016-10-19T12:34:26Z")

</div>

K, this is what you will want then

```plaintext
body:not([class*='category-']) #create-topic {
    display: none;
}

body.tags-page #create-topic {
    display: block;
}

```

---

_[View the full topic](https://meta.discourse.org/t/hide-create-topic-on-home-page/51732)._
