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

Reply To: How do I show a filter box horizontally instead of vertically?

Home Forums Product Support Forums Ajax Search Pro for WordPress Support How do I show a filter box horizontally instead of vertically? Reply To: How do I show a filter box horizontally instead of vertically?

#41896
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Well, there is no option on the back-end to do that, but it should be still possible via some custom CSS, try something like:

.asp_sb,
.asp_sb form fieldset {
    width: 100% !important;
    max-width: none !important;
}
.asp_sb form fieldset .asp_sett_scroll {
    width: 100% !important;
    max-width: none !important;
    display: flex;
    flex-wrap: wrap !important;
    position: static !Important;
}
.asp_sb form fieldset .asp_option {
    flex-grow: 1 !important;
}