Forums Forums Search & Filter Pro Integrating elementor pro with Search and filter Pro

Viewing 10 posts - 11 through 20 (of 36 total)
  • Anonymous
    #187259
    This reply has been marked as private.
    Trevor
    #187337

    Hi

    Can you try adding this to your theme’s custom CSS:

    .elementor-336 .elementor-element.elementor-element-e34e354 .elementor-posts-container .elementor-post__thumbnail {
      padding-bottom: 0 !important;
    }
    Anonymous
    #187343
    This reply has been marked as private.
    Trevor
    #187345

    WP Admin -> Appearance -> Customize -> Additional CSS

    Anonymous
    #187399
    This reply has been marked as private.
    Trevor
    #187536

    What happens if you change that code so that the 0 is 100%?

    Anonymous
    #187581
    This reply has been marked as private.
    Trevor
    #187589

    If we did not use that CSS I gave you, this ONLY happens after an Ajax refresh of the results?

    If so, some custom javascript could be used to apply the CSS, in theory like this:

    <script type="text/javascript">(function ( $ ) {
      "use strict";
      $(document).on("sf:ajaxfinish", ".searchandfilter", function(){
        console.log("ajax complete");
    
        $('.elementor-336 .elementor-element.elementor-element-e34e354 .elementor-posts-container .elementor-post__thumbnail').css('padding-bottom','0 none !important');
    
      });
    }(jQuery));</script>

    I am not sure if, when doing it this way, it needs the !important. If you have no means to add javascript to a page, the simplest is a text widget and paste it in there.

    Anonymous
    #187595
    This reply has been marked as private.
    Trevor
    #187597

    Are you using a page builder or do you have a sidebar on the page?

Viewing 10 posts - 11 through 20 (of 36 total)