# Hide '+ New Topic' button from home screen

**URL:** https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359
**Category:** Development
**Tags:** css
**Created:** [2016年十一月2日 10:21 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359 "2016-11-02T10:21:25Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![irshad\_discource](https://avatars.discourse-cdn.com/v4/letter/i/dec6dc/32.png) [@irshad\_discource](https://meta.discourse.org/u/irshad_discource)
#### Post date: [2016年十一月2日 10:21 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/1 "2016-11-02T10:21:25Z")

</div>

How can I hide the ‘+ New Topic’ button hide from home screen only as it is already there in category pages. Please help me with css/html so that I can put in customize admin section.

---

<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年十一月2日 10:33 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/2 "2016-11-02T10:33:01Z")

</div>

See

> [@Hide 'Create Topic' on home page?](https://meta.discourse.org/t/hide-create-topic-on-home-page/51732/7):
>
> K, this is what you will want then body:not([class\*='category-']) #create-topic { display: none; } body.tags-page #create-topic { display: block; }

---

<div class="post-metadata">

### Author: ![irshad\_discource](https://avatars.discourse-cdn.com/v4/letter/i/dec6dc/32.png) [@irshad\_discource](https://meta.discourse.org/u/irshad_discource)
#### Post date: [2016年十一月2日 10:36 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/3 "2016-11-02T10:36:40Z")

</div>

Thanks @cpradio. Also is there a way to hide the top menu buttons latest & categories ? I tried from top menu of admin screen. But it says lates is required ? Can this done with css ?

---

<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年十一月2日 11:30 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/4 "2016-11-02T11:30:46Z")

</div>

So you don’t want any navigation shown? Can you provide a screenshot and cross out what you don’t want displayed? Also realize that may make it hard for your users to navigate.

---

<div class="post-metadata">

### Author: ![irshad\_discource](https://avatars.discourse-cdn.com/v4/letter/i/dec6dc/32.png) [@irshad\_discource](https://meta.discourse.org/u/irshad_discource)
#### Post date: [2016年十一月2日 12:09 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/5 "2016-11-02T12:09:04Z")

</div>

@cpradio Thanks again for the quick reply. I dont want those as I have already customized my home dashboard to include those ( Please refer attached ) .  
Please find the attached screen short. The dark circled once I want to remove.

 ![](https://global.discourse-cdn.com/meta/original/3X/1/7/17299d4e991f248d87cbfdace663fa59220a282e.png)

---

<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年十一月2日 13:15 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/7 "2016-11-02T13:15:24Z")

</div>

Don’t do that. That will break your site.

Instead the following CSS customization will do what you want

```plaintext
.nav.nav-pills { display: none; }
.full-width .nav.nav-pills { display: block; }

```

**Edit:** Added `.full-width` style too, otherwise, the admin nav can disappear.

---

<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: [2019年三月23日 20:28 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/8 "2019-03-23T20:28:04Z")

</div>



---

<div class="post-metadata">

### Author: ![schleifer](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/schleifer/32/86416_2.png) [@schleifer](https://meta.discourse.org/u/schleifer)
#### Post date: [2019年三月23日 20:46 UTC](https://meta.discourse.org/t/hide-new-topic-button-from-home-screen/52359/9 "2019-03-23T20:46:23Z")

</div>


