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

Reply To: Question about formatting ajax search pro

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

#24572
Ernest MarcinkoErnest Marcinko
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.