# ヘッダーのドロップダウンメニューにある「コミュニティ」の隣の新しいトピックボタンを非表示にするにはどうすればよいですか？

**URL:** https://meta.discourse.org/t/how-do-i-hide-the-new-topic-button-next-to-community-in-the-header-drop-down-menu/265772
**Category:** Development
**Tags:** css
**Created:** [2023 年 5 月 22 日午前 9:15 UTC](https://meta.discourse.org/t/how-do-i-hide-the-new-topic-button-next-to-community-in-the-header-drop-down-menu/265772 "2023-05-22T09:15:14Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Tris20](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tris20/32/264639_2.png) [@Tris20](https://meta.discourse.org/u/Tris20)
#### Post date: [2023 年 5 月 22 日午前 9:15 UTC](https://meta.discourse.org/t/how-do-i-hide-the-new-topic-button-next-to-community-in-the-header-drop-down-menu/265772/1 "2023-05-22T09:15:15Z")

</div>

コミュニティの隣にある新しいトピックを作成するボタンを非表示にしたいです。これはドロップダウンメニューにあります。

 ![image](https://global.discourse-cdn.com/meta/original/4X/8/6/d/86dda95de554d31782a323007e37f4c2349c5616.png)

以下を試すと、新しいトピックボタンは非表示になりますが、カテゴリの隣にある編集鉛筆（これは保持したい）も非表示になります。

```css
.sidebar-section-header-button{
    display: none;
}

```

コミュニティの隣にある新しいトピックボタン _のみ_ を非表示にするにはどうすればよいですか？

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [2023 年 5 月 22 日午後 9:15 UTC](https://meta.discourse.org/t/how-do-i-hide-the-new-topic-button-next-to-community-in-the-header-drop-down-menu/265772/2 "2023-05-22T21:15:49Z")

</div>

これで動作するはずです

```css
[data-section-name="community"] {
  .sidebar-section-header-button {
    display: none;
  }
}

```

---

<div class="post-metadata">

### Author: ![Tris20](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tris20/32/264639_2.png) [@Tris20](https://meta.discourse.org/u/Tris20)
#### Post date: [2023 年 5 月 30 日午前 7:36 UTC](https://meta.discourse.org/t/how-do-i-hide-the-new-topic-button-next-to-community-in-the-header-drop-down-menu/265772/3 "2023-05-30T07:36:36Z")

</div>

クリスさん、ありがとうございます！今日ようやく試す機会があり、見事にうまくいきました！

---

<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: [2023 年 6 月 29 日午前 7:37 UTC](https://meta.discourse.org/t/how-do-i-hide-the-new-topic-button-next-to-community-in-the-header-drop-down-menu/265772/4 "2023-06-29T07:37:11Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
