Hi again,
Please replace the previous code with the following code:
(function($){
$(window).on("load resize", function () {
var max = 0;
$(".e213-29.x-container .x-column").css('height', "auto");
$(".e213-39.x-container .x-column").css('height', "auto");
$(".e213-39.x-container .x-column").each(function(index, el) {
if( jQuery(this).height() > max ){
max = jQuery(this).height();
}
});
$(".e213-29.x-container .x-column").css('height', max);
$(".e213-39.x-container .x-column").css('height', max);
});
})(jQuery);
Don’t forget to clear your browser’s cache after adding the code.
As mentioned above the JS code provided is specific to your current page setup. If you change your markup (add or remove sections or columns) the code provided above will not work as intended. You should give classes to your columns or sections and then use it in the above code so it always works.
To find out the right selector to be able to write the required JS / CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
https://developers.google.com/web/tools/chrome-devtools/
https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s
Let us know how this goes!