I use the script:

(function($){ "use strict"; $.fn.simpleEQH = function() { var maxHeight = this.map(function(i, e) { return $(e).height(); }).get(); return this.height(Math.max.apply(this, maxHeight)); }; }( jQuery )); 

Script in plugin SimpleEQH .

It aligns the height of the blocks, but I cannot defeat the problem in any way: the "buy and more" buttons do not stretch across the width of the block.

    1 answer 1

    The simplest is absolute positioning:

     .zt_list_product .block_product .zt_product .zt-action { position: absolute; bottom: 0; width: 100%; // остальные стили } 
    • absolute positioning without using a script? - sander
    • The price of buttons has moved .. - sander