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

Reply To: Results box in full height and more results / Range slider on mobile

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Results box in full height and more results / Range slider on mobile Reply To: Results box in full height and more results / Range slider on mobile

#24251
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

It depends on which layout do you use (vertical, horizontal, isotopic..), but there are options to change that without any custom CSS:
– For vertical layout, you can change the viewport to a very high number, then the scrolling will never trigger: https://i.imgur.com/adM1dDD.png
– For the isotopic layout, turning off the pagination: https://i.imgur.com/u1VKOWg.png
I can also recommend checking the results layout and position documentation, you will find some other useful information there as well.

The range slider width follows the width of the filter boxes, that can be set here: https://i.imgur.com/rsKce64.png
If you prefer to set them via custom CSS, you can do that by using this:

fieldset.asp_custom_f {
    min-width: 100% !important;
}

It of course depends on the case, you can use either px or % values as well.