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

I want to hide the button next to Community which creates new topics. This is in the Drop Down menu.

image

When I try the following it hides the new topic button, but it also hides the edit pencil next to Categories(which I want to keep).

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

How do I hide only the new topic button next to community?

「いいね!」 3

This should work

[data-section-name="community"] {
  .sidebar-section-header-button {
    display: none;
  }
}
「いいね!」 6

Thank you Kris! Finally got a chance to try this today and it worked a treat!

「いいね!」 1

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