WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: equal-height-columns (Used by 3,616 domains)

Equal Height Columns

👤 MIGHTYminnow 📦 v1.2.1

Compatible with PHP 8.2

Like this plugin? Please consider leaving a 5-star review.

Equal Height Columns lets you easily equalize the height of various columns and elements.

Features

  • Target unlimited elements and element groups
  • Specify simple CSS/jQuery selectors to target elements
  • Specify breakpoint to kick in only at certain screen sizes
  • Easy to use admin interface
  • Heights are equalized immediately after the page has loaded
  • Fully responsive (automatically updates on resize and orientationchange events)
  • Works on mobile devices
  • Works across all modern browsers (including IE8)
  • Comes with custom event listener to manually trigger
  • Super small – 8kB jQuery file size
  • Trigger custom ‘equalheight’ event to force resize

Instructions

  1. Navigate to Settings > Equal Height Columns in the WordPress admin.
  2. Enter a selector and breakpoint for the first column group.
  3. Add/remove column groups by clicking the “+ Add More” and “Remove” buttons.

Advanced

Want to trigger the equalizing of the heights manually? No problem. You can skip entering a selector on the settings page and call the jQuery script yourself using one of two functions:

jQuery( '.selector' ).initEqualHeights();

// Or

jQuery( '.selector' ).equalizeTheHeights();

The difference between these two functions is simply that initEqualHeights() will set up all the events for recalculating the heights when the window is resized or the global equalheights event is triggered, but equalizeTheHeights() will simply equalize the heights without involving any events.

Both functions take three optional arguments, the minimum height (number of pixels), maximum height, and the breakpoint (below which the heights will revert to their original size):

jQuery( '.selector' ).initEqualHeights( minHeight, maxHeight, breakPoint );

So an example might look like this:

jQuery( '.selector' ).initEqualHeights( 200, 500, 768 );

When entering a selector on the settings page or using the initEqualHeights() method this plugin also adds an event ‘equalheights’ to the window, allowing you to easily trigger the equalizing manually. This is useful if you have added new items to the page after it loads via AJAX. You can trigger the event like this:

jQuery( window ).trigger( 'equalheights' );

Another option for controlling which elements get equalized is the equal_height_columns_elements filter. This filter operates on the array of data that gets passed to the JS right before it is passed. This allows for developers to specify selectors that can’t be deleted from the settings page, and for programmaticly building selectors based on dynamic data. Here’s an example of how the filter can be used:

add_filter( 'equal_height_columns_elements', 'custom_ehc_elements' );
function custom_ehc_elements( $elements ) {

    $elements['element-groups']['custom'] = array(
        'selector'   => '.ehc-target', // Selector goes here.
        'breakpoint' => '768',
    );

    return $elements;
}

The keys on the element-groups array used by selectors entered on the settings page will come in as numbered indexes, so to avoid collision it’s best to use named keys for any custom selectors (we’re using ‘custom’ in the example above, but any unique string will work).

This plugin is on Github and pull requests are always welcome.

NEW: Multi rows

On version 1.2.0 we are introducing a new feature (for now, only available via JavaScript) that resolves a common issue if the row number of certain elements varies across breakpoints when the number of columns change.

For example, if we have 2 columns for tablets and 3 columns for desktops, the third element in the group would be positioned on the second row for tablets but on the first row for desktops.

Before this new feature, the equal height would be based on all the elements from the group. Now you can have “subgroups” for each row, and recalculate when the number of columns in the rows change.

To use this new feature add the function once per breakpoint:

jQuery( document ).equalHeight( selector, columns, minWidth, maxWidth );

selector: The selector of the group of elements that you want to apply the equal height.

columns: The number of columns per row on the breakpoint.

minWidth: The minimum width of the breakpoint. Use 1 for mobile.

maxWidth: The maximum width of the breakpoint. You can leave empty for the biggest breakpoint.

The following example would apply equal height for headings with the class .demo-heading in a grid that has 1 column per row on mobile, 2 columns on tablet and 3 columns on desktop:

$( document ).equalHeight( '.demo-heading', 1, 1, 767 ); // 1 columns for 1px - 767px
$( document ).equalHeight( '.demo-heading', 2, 768, 1024 ); // 2 columns for 768px - 1024px
$( document ).equalHeight( '.demo-heading', 3, 1025 ); // 3 columns for 1025px (and above)
DomainExposuresHeadersLast Checked
v*n*y*r*.net B 2026-05-02 15:23:02
m*u*t*i*v*e*v*t.com (WP 6.9.4) F 2026-05-02 15:13:54
m*u*t*i*t*p*u*l*e*s*u*l*.com (WP 6.9.4) F 2026-05-02 14:56:20
i*n*t*s*c*a*m*d*a*o.com C 2026-05-02 14:55:06
i*n*t*s*c*a*m*d*a.com C 2026-05-02 14:55:06
f*t*e*h*o*f*a*e.org (WP 6.9.4) F 2026-05-02 14:34:28
i*n*r*o*r*e*o*s*l*i*g.com F 2026-05-02 13:59:52
g*w*w*b*i*e.com B 2026-05-02 13:26:06
f*g*b.com (WP 6.0.11) ⚠️ F 2026-05-02 13:07:39
i*h*e*.com (WP 6.9.4) F 2026-05-02 12:56:44
f*b*a*t*.com (WP 6.9.4) F 2026-05-02 12:41:49
u*a*a*a*g*r.com (WP 6.9.4) F 2026-05-02 12:38:01
b*b*i*g*.org F 2026-05-02 12:21:42
u*a*i*e*c*a*g*.com (WP 6.9.4) F 2026-05-02 12:04:45
a*e*-*n*o*a*i*n*n*.com (WP 6.8.1) A 2026-05-02 11:58:50
a*e*-*n*o*a*i*n*.com A 2026-05-02 11:58:50
l*n*b*p*r*.com (WP 6.9.4) F 2026-05-02 11:58:24
l*n*b*-*o*t.com (WP 6.9.4) F 2026-05-02 11:58:24
w*-*g*n*a.net 🔓 F 2026-05-02 11:47:23
s*l*e*c*u*.com (WP 6.9.4) F 2026-05-02 11:43:48
f*u*t*u*s*a*m*o*c*o*l.com F 2026-05-02 11:42:19
s*i*l*d*t*s*a*e.eu (WP 6.2.2) ⚠️ 🔓 F 2026-05-02 11:28:41
l*t*l*l*m*m*d*a.c*.uk (WP 6.9.4) D 2026-05-02 11:22:55
f*j*u*n*.org (WP 6.9.4) D 2026-05-02 11:13:49

Top 50 Plugins

Plugin Count
elementor 1,868,053
contact-form-7 1,839,138
elementor-pro 1,086,956
woocommerce 843,096
revslider 638,354
jetpack 478,746
js_composer 447,519
wp-rocket 347,732
essential-addons-for-elementor-lite 308,278
gravityforms 300,257
complianz-gdpr 269,093
cookie-law-info 241,775
instagram-feed 235,701
google-site-kit 229,472
sitepress-multilingual-cms 229,144
google-analytics-for-wordpress 220,437
elementskit-lite 217,876
header-footer-elementor 217,110
bluehost-wordpress-plugin 192,383
gutenberg 166,413
gutenberg-core 165,241
cookie-notice 160,147
litespeed-cache 140,996
the-events-calendar 137,971
wpforms-lite 133,159
gtranslate 132,650
astra-sites 122,378
popup-maker 119,986
tablepress 115,666
woocommerce-payments 115,555
coblocks 103,081
honeypot 101,592
astra-addon 98,381
duracelltomi-google-tag-manager 97,229
wp-smushit 96,743
all-in-one-seo-pack 96,258
LayerSlider 94,649
bb-plugin 92,877
megamenu 90,546
premium-addons-for-elementor 89,861
akismet 88,120
mailchimp-for-wp 86,426
cleantalk-spam-protect 85,881
woocommerce-gateway-stripe 85,506
ml-slider 84,529
borlabs-cookie 83,528
wp-pagenavi 82,783
fusion-builder 82,411
ewww-image-optimizer 81,669
smart-slider-3 80,822

Top 50 Themes

Theme Count
hello-elementor 638,947
Divi 528,350
astra 437,220
flatsome 147,608
generatepress 130,535
Avada 128,533
pub 113,783
twentytwentyfour 87,839
oceanwp 86,469
kadence 82,000
sydney 75,827
enfold 74,519
salient 68,746
twentyseventeen 58,508
h4 58,354
bb-theme 56,485
betheme 53,931
blocksy 53,040
cocoon-master 52,732
dt-the7 47,785
twentytwentyfive 46,005
neve 41,043
Avada-Child-Theme 38,823
woodmart 34,431
gox 34,352
bridge 33,904
twentytwentyone 33,206
lightning 32,337
twentytwenty 31,198
swell 29,067
voxel 27,638
Impreza 27,599
bricks 26,946
twentytwentythree 24,833
Newspaper 24,711
sinatra 24,616
kubio 22,257
twentytwentytwo 20,450
uncode 19,869
epik-redesign 19,288
twentysixteen 19,161
storefront 18,527
pro 18,211
Total 15,275
extendable 15,037
yith-wonder 14,135
hello-theme-child-master 13,902
yootheme 13,495
themify-ultra 13,469
hestia 13,422