Dear Themeco Support,
I again seem to have a problem with the flipping cards! And my client really, really wants it fixed this time. So hope can help me!
It’s the same old issue. The cards or not the same height and when the window is scaled down, the cards are responsive (what I want) but look real funky. I recently added some cards and now you see this issue more than ever. Since there are going to be more and more cards added in the future, I would really like it fixed.
So I would like to have that all the cards are the same height and have the same behaviour, hope you can help. In the attachment a screenshots. See below the latest code solution you guys provided me. Thanks in advance, love to hear from you!
http://www.iwitnessindeschool.nl > ‘ik wil een gastspreker’ > ‘Gastspreker in opleiding’’
(function($){
$(window).on(‘load resize’, function() {
var max = 0;
$(".x-card-outer").each(function(index, el) {
$(this).find(".x-card-inner").each(function(index, el) {
if( $(this).height() > max ){
max = $(this).height();
}
});
$(this).find(".x-card-inner").css('height', max);
});
});
})(jQuery);
<img src="//tco-forum-
I see you can change the code via Dashboard > customizer > custom > Edit global Javascript or via Cornerstone with the JS icon. I tried both but it didn’t work. Am I doing something wrong or do we need a different code? Many thanks for helping me! 
As some of the content goes completely outside it’s box when resizing. So I hope you’ve got another trick up your sleeve (javascript is like magic to me) and hope you will help me one more time
if it’s in any way easier or allowed, you would have my permission to directly alter the code yourself in the customizer because I have a feeling this is a more trial & error situation. Again many thanks and love to hear from you again!
You’re a lifesaver!