Is it possible to display the checkboxes options horizontally in Custom Search View?
There is no builtin option in Toolset to set checkboxes horizontally. But you can do this using custom css. Please add the following CSS to your theme’s style.css file:
.checkbox {
display: inline-block;
}
.checkbox + .checkbox {
margin-left: 20px;
}