# Filter Menu - Set Display Properties?

**URL:** https://forums.knack.com/t/filter-menu-set-display-properties/12064
**Category:** Get Answers
**Created:** [February 17, 2022, 4:58am UTC](https://forums.knack.com/t/filter-menu-set-display-properties/12064 "2022-02-17T04:58:56Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![PeterG](https://avatars.discourse-cdn.com/v4/letter/p/977dab/32.png) [@PeterG](https://forums.knack.com/u/PeterG)
#### Post date: [February 17, 2022, 4:58am UTC](https://forums.knack.com/t/filter-menu-set-display-properties/12064/1 "2022-02-17T04:58:56Z")

</div>

Knack has added a few enhancements to control display settings. That’s all good. Is there a way to set the display settings for a filer “menu”?

![Knack Filter Menu](https://us1.discourse-cdn.com/flex020/uploads/knack/original/2X/5/5953dac666c781f652578390e26d7985952ff74c.png)

---

<div class="post-metadata">

### Author: ![CarlHolmes](https://sea2.discourse-cdn.com/flex020/user_avatar/forums.knack.com/carlholmes/32/2814_2.png) [@CarlHolmes](https://forums.knack.com/u/CarlHolmes)
#### Post date: [February 17, 2022, 7:33am UTC](https://forums.knack.com/t/filter-menu-set-display-properties/12064/2 "2022-02-17T07:33:25Z")

</div>

There aren’t any customisation options in Knack for filters yet.  
I’m not a coder but was given the below which you can tweak. This just changes the colour, not sure what options you are looking for.  
Any other options will also be code based.  
You obviously need to change XXX to your view number.

```auto

#view_XXX .js-filter-menu.tabs{
  /*border: 2px solid #c1d18f; OR #7f9344 */
  float: left;
}
#view_XXX .js-filter-menu.tabs .is-active {
  border: 2px solid #00533B;
  font-size: 100% !important;
  background-color:inherit;
}

/*ACTIVE*/
#view_XXX .js-filter-menu.tabs li:nth-child(1) {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: 100%;
}

/*INACTIVE*/
#view_XXX .js-filter-menu.tabs li:nth-child(2) {
  background: DodgerBlue !imprtant;
  text-align: center;
  color: white !important;
  font-weight: bold;
  font-size: 100%;
} 

```

---

<div class="post-metadata">

### Author: ![PeterG](https://avatars.discourse-cdn.com/v4/letter/p/977dab/32.png) [@PeterG](https://forums.knack.com/u/PeterG)
#### Post date: [February 17, 2022, 4:01pm UTC](https://forums.knack.com/t/filter-menu-set-display-properties/12064/3 "2022-02-17T16:01:36Z")

</div>

Thanks Carl. I’ll look at that.
