This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Custom Styling for filters

#28684
Ernest MarcinkoErnest Marcinko
Keymaster

Well, if you don’t like a drop-down layout, then a different approach is to use a custom CSS to simply display the items horizontally:

.asp_simplebar-content {
    display: flex;
    justify-content: left;
}

.asp_option_label {
    white-space: nowrap;
}

.asp_filter_tax {
    width:  100% !important;
    min-width: 100% !important;
}