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?
March 20, 2023 at 4:30 pm
#41896
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;
}