How do I hide the new topic button next to Community in the Header Drop down menu?

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 Likes

This should work

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

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

1 Like

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