# Feature request: limit access to kanban board options

**URL:** https://meta.discourse.org/t/feature-request-limit-access-to-kanban-board-options/366790
**Category:** Feature
**Tags:** kanban-board
**Created:** [December 28, 2021, 8:39pm UTC](https://meta.discourse.org/t/feature-request-limit-access-to-kanban-board-options/366790 "2021-12-28T20:39:28Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![mattdm](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mattdm/32/216484_2.png) [@mattdm](https://meta.discourse.org/u/mattdm)
#### Post date: [December 28, 2021, 8:39pm UTC](https://meta.discourse.org/t/feature-request-limit-access-to-kanban-board-options/366790/1 "2021-12-28T20:39:28Z")

</div>

Is there a way to hide the button which brings up the Kanban Board options? I want set that in the config for the board and not let it get messed with accidentally.

Not sure what account level the button is visible to, but even if it’s only staff I’d like it out of the way.

---

<div class="post-metadata">

### Author: ![nathank](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nathank/32/290039_2.png) [@nathank](https://meta.discourse.org/u/nathank)
#### Post date: [January 6, 2022, 11:06pm UTC](https://meta.discourse.org/t/feature-request-limit-access-to-kanban-board-options/366790/2 "2022-01-06T23:06:38Z")

</div>

> [@mattdm](#):
>
> Is there a way to hide the button which brings up the Kanban Board options? I want set that in the config for the board and not let it get messed with accidentally.

Try this CSS; it preserves the expand button but hides the settings:

```plaintext
// Hides the Kanban settings button but preserves the expand button
.kanban-spacer .btn {
    &:nth-of-type(2){
   display: none;
    }
}

```
