These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Various Issues
Tagged: V3
OK, I found the problem. It is your theme CSS from Flatsome, this:
.row>div:not(.col):not([class^="col-"]) {
width: 100% !important;
}
It is overriding the width of the loading icon. Not a very nice bit of code as it overrides a lot by using that !important, however, this custom CSS should fix it:
.search-filter-scroll-loading {
max-width: 30px;
}