- This topic has 12 replies, 2 voices, and was last updated 6 years, 3 months ago by .
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 › Elementor pro post grid Issues (pagination and image render post filter)
Add this custom CSS to the theme:
body.sfajax .elementor-255 .elementor-element.elementor-element-f133f8c .elementor-posts-container .elementor-post__thumbnail {
padding-bottom: 0 !important;
}
Then you need to add a javascript to the page:
<script>
(function ( $ ) {
"use strict";
$(document).on("sf:ajaxstart", ".searchandfilter", function(){
jQuery("body").addClass("sfajax");
});
}(jQuery));</script>
I am hoping that will do it.