Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Question about formatting ajax search pro › Reply To: Question about formatting ajax search pro
November 8, 2019 at 9:53 am
#24572
Keymaster
Hi Tom,
Currently there is no option for that. Someone recently asked a similar question, and I recommended a custom CSS solution, to display the categories next to one another. Try this:
.asp_sb {
max-width: none !important;
}
.asp_sb fieldset {
flex: 1 1 0 !important;
}
.asp_sb fieldset.asp_filter_tax {
flex: 10 1 auto !important;
}
.asp_filter_tax,
.asp_filter_tax .asp_simplebar-content {
display: flex !important;
flex-wrap: wrap;
}
It should result in something like this: https://i.imgur.com/ZQRC8mg.png
It is not the best possible solution, but it may as well work.