Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Custom Styling for filters › Reply To: Custom Styling for filters
July 24, 2020 at 4:31 pm
#28684
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;
}