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”?
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.
#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%;
}
Thanks Carl. I’ll look at that.
1 Like