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

Plugin: equal-height-columns (Used by 3,600 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
k*l*x*r*h*m*s.com (WP 6.9) βœ… F 2026-05-21 11:20:17
d*c*u*t*n*t*n.com βœ… F 2026-05-21 11:17:44
c*t*o*t*r*o*s*o*.vet βœ… F 2026-05-21 10:34:01
d*a*y*f*o*s.com βœ… F 2026-05-21 10:09:04
m*d*c*l*s*i*t*n*e*o*s.com βœ… F 2026-05-21 10:08:51
e*t*a*r*i*a*y*t*l*t*.com βœ… B 2026-05-21 10:01:45
d*a*i*a*.com πŸ”“ F 2026-05-21 09:43:36
d*a*i*a*c*i*i*.com (WP 6.9.4) βœ… F 2026-05-21 09:43:36
k*v.k*v*s*c*n*.cz (WP 7.0) βœ… F 2026-05-21 09:27:41
o*k*a*d*d*u*d.org βœ… F 2026-05-21 08:49:17
r*a*d*t*r*e*t*s.com βœ… F 2026-05-21 08:40:04
k*t*r*c*s*u*e*y*c*t*e*d*z*o*s.com βœ… F 2026-05-21 08:36:30
d*v*d*l*t*r*a*.com (WP 6.9.4) βœ… F 2026-05-21 08:29:58
c*h*o*n*a*i*n.ca βœ… F 2026-05-21 08:17:23
a*n*u*n*.com βœ… B 2026-05-21 08:07:18
d*t*c*n*l*g*.com (WP 7.0) βœ… F 2026-05-21 07:51:00
h*g*p*o*i*f*.com βœ… D 2026-05-21 07:37:04
r*u*d*p*y*.com βœ… F 2026-05-21 07:00:01
s*u*c*d*f*n*e.com βœ… C 2026-05-21 06:56:10
s*u*c*d*f*n*e.com βœ… C 2026-05-21 06:56:10
w*n*s*h*e*l*r.de (WP 6.9.4) βœ… F 2026-05-21 05:39:46
i*h*r*t*.w*e*g*n*p*w*r*d.com βœ… F 2026-05-21 05:25:58
i*h*r*t*n*t*a*i*e.org βœ… F 2026-05-21 05:25:58
r*i*o*a*i*y.com βœ… F 2026-05-21 05:10:16
d*v*d*s*a*.de (WP 6.9.4) βœ… A 2026-05-21 04:41:00
h*g*e*s*l*b*s*n*s*.com (WP 7.0) βœ… C 2026-05-21 04:03:42
s*c.marketing (WP 6.8.5) βœ… F 2026-05-21 03:50:17
h*g*e*e*e*p.com βœ… A 2026-05-21 03:41:38
o*i*l*w.com (WP 6.9.4) βœ… C 2026-05-21 02:59:19
s*n*c*m.com βœ… F 2026-05-21 02:37:37
1*0*f*r*s.net (WP 6.9.4) βœ… F 2026-05-21 02:33:30
r*m*n*i*h*s.com (WP 6.9.4) βœ… D 2026-05-21 02:33:04
a*n*r*o*a*i*a*h*s*i*a*.com βœ… F 2026-05-21 01:32:27
b*a*c*u*t*.com βœ… F 2026-05-21 01:29:13
c*m*e*c*.b*c*u*v*l*e*m*d*i*l*s.com (WP 6.9.4) βœ… F 2026-05-21 01:21:43
t*u*t*f*m*l*f*o*s.com βœ… F 2026-05-21 01:03:23
d*v*f*r*e*h*m*s.com βœ… F 2026-05-21 01:00:05
d*v*n*i*r*u*.com (WP 6.9.4) βœ… F 2026-05-21 00:19:26
a*n*k*m*-*u*h*r.com (WP 6.9.4) βœ… D 2026-05-20 23:59:51
s*n*e*h*p*c*u*s*l*n*.com (WP 7.0) βœ… F 2026-05-20 23:51:46
h*d*o*p*r*.com (WP 5.2.24) ⚠️ F 2026-05-20 23:25:15
m*g*z*n*w*e*z*k*.pl βœ… F 2026-05-20 23:03:31
o*b*n*i*e.com (WP 5.1.22) ⚠️ F 2026-05-20 22:58:09
m*c*n*c*s*u*d*i*a.com (WP 6.8.3) βœ… F 2026-05-20 22:47:31
e*s*m*s*h*n*n*a*.de (WP 6.9.4) βœ… F 2026-05-20 22:21:10
d*t*l*n*-*l*c*r*n*c*.c*.uk (WP 7.0) βœ… F 2026-05-20 22:14:46
a*r*i*r*e*.c*.il βœ… B 2026-05-20 21:48:33
i*n*t*p*r*o*m*n*e.net βœ… B 2026-05-20 21:38:46
h*d*e*l*g*t*b*.com (WP 6.9.4) βœ… F 2026-05-20 21:15:25
q*a*r*p*s*e*.cat βœ… F 2026-05-20 21:11:50
b*a*s*l*n*b*s*d.com (WP 6.9.4) βœ… B 2026-05-20 20:07:07
c*r*p*r*n*r*o*c*o*c*u*t*.org (WP 6.9.4) βœ… F 2026-05-20 19:59:01
e*p*r*r*s*a*c*p*r*a*.com βœ… F 2026-05-20 19:54:51
s*a*a*t*g*n*.w*e*g*n*.com βœ… D 2026-05-20 19:29:01
i*f*.s*a*a.us βœ… C 2026-05-20 19:29:01
h*c*m*n*a*e*.com (WP 6.9.4) βœ… D 2026-05-20 19:27:53
t*u*a*m*r*u*.com βœ… F 2026-05-20 19:11:51
b*a*b*r*c*u*s*l.com βœ… F 2026-05-20 18:48:09
a*a*e*i*g*o*u*.c*m.au (WP 6.9.4) βœ… F 2026-05-20 18:46:07
d*t*s*t*i*i*a*.com βœ… F 2026-05-20 18:39:24
w*a*u*i*e*.com (WP 6.9.4) βœ… D 2026-05-20 18:32:23
c*m*c.c*m.cy (WP 6.9.4) βœ… F 2026-05-20 18:28:19
w*d*b*s*r*.pl (WP 6.9.4) βœ… F 2026-05-20 18:18:19
o*t*l*.com βœ… F 2026-05-20 18:03:11
m*s*c*a*.org βœ… F 2026-05-20 17:50:44
d*t*l*u*g*s.com (WP 6.9.4) βœ… F 2026-05-20 17:28:38
o*m*t*v*t.com βœ… F 2026-05-20 17:08:58
b*p*e*e*a*l*s.com βœ… B 2026-05-20 16:15:51
b*p*u*c*r*.com (WP 6.9.4) βœ… F 2026-05-20 16:15:51
b*p*t*o*p*t*l.com βœ… F 2026-05-20 16:10:21
b*p*r*n*w*b*e*.com βœ… B 2026-05-20 16:10:21
b*p*h*p*o.com βœ… B 2026-05-20 16:10:20
b*p*c*b*e*.com βœ… B 2026-05-20 16:10:20
b*p*c*b*e.com βœ… B 2026-05-20 16:10:20
b*g*.o*g.uk (WP 6.9.4) βœ… D 2026-05-20 16:01:40
b*o*c*i*a.com βœ… A 2026-05-20 15:59:21
r*v*s*s*e.com βœ… F 2026-05-20 15:48:15
r*v*s*4*a*.com βœ… F 2026-05-20 15:48:14
s*l*e*a*s*s*.com βœ… A 2026-05-20 15:45:57
p*a*a*h*e*i*s.org (WP 6.9.4) βœ… F 2026-05-20 15:06:49
p*o*p*r*o*s.w*e*g*n*.com βœ… F 2026-05-20 15:05:46
h*o*e*g*o*p.com βœ… B 2026-05-20 14:48:35
k*n*e*g*e*n.com (WP 6.9.4) βœ… F 2026-05-20 14:46:46
k*r*n*e*a*d.com βœ… F 2026-05-20 14:19:24
k*r*n*e*d*r.com (WP 6.9.4) βœ… D 2026-05-20 13:58:33
t*a*t*w*n*h*i.c*.uk βœ… F 2026-05-20 13:54:40
e*o*r*.c*.uk (WP 6.9.4) βœ… F 2026-05-20 13:53:34
t*o*t*a*i*l.com βœ… F 2026-05-20 13:48:51
t*o*t*d*n*e*.com βœ… F 2026-05-20 13:48:49
l*t*l*w*d*i*g*d*a*.c*.uk (WP 6.9.4) βœ… F 2026-05-20 13:33:47
d*u*e*e*a*l*n*.com (WP 6.9.4) βœ… F 2026-05-20 13:33:19
b*y*e*r*y*a*i*y*a*.com (WP 6.9.4) βœ… F 2026-05-20 12:42:01
o*i*e*l*c*.com (WP 6.9.4) βœ… D 2026-05-20 12:37:51
a*i*a*w*l*n*s*c*i*i*o*t*o*.com βœ… F 2026-05-20 12:33:06
a*i*a*u*g*n*c*n*e*.com βœ… F 2026-05-20 12:33:04
e*o*-*u*r*c*n*s.com (WP 6.9.4) βœ… F 2026-05-20 12:22:22
k*n*s*a*d*e*.com (WP 6.9.4) βœ… F 2026-05-20 11:30:34
m*r*z*a*.com (WP 6.9.4) βœ… F 2026-05-20 11:27:06
a*i*a*h*s*i*a*o*c*n*o*.com (WP 6.9.4) βœ… F 2026-05-20 11:19:19
g*-*i*z*e*m.de (WP 6.9.4) βœ… F 2026-05-20 11:16:48

Top 50 Plugins

Plugin Count
elementor 1,853,982
contact-form-7 1,824,242
elementor-pro 1,079,666
woocommerce 837,953
revslider 634,084
jetpack 476,287
js_composer 444,260
wp-rocket 344,896
essential-addons-for-elementor-lite 304,971
gravityforms 297,593
complianz-gdpr 266,410
cookie-law-info 239,557
instagram-feed 234,194
google-site-kit 228,065
sitepress-multilingual-cms 227,639
google-analytics-for-wordpress 219,146
header-footer-elementor 215,701
elementskit-lite 215,335
bluehost-wordpress-plugin 192,135
gutenberg 165,644
gutenberg-core 164,038
cookie-notice 158,158
litespeed-cache 138,389
the-events-calendar 136,486
wpforms-lite 132,399
gtranslate 131,741
astra-sites 121,813
popup-maker 119,220
woocommerce-payments 115,110
tablepress 114,259
coblocks 102,359
honeypot 100,795
astra-addon 97,721
duracelltomi-google-tag-manager 96,519
wp-smushit 96,107
all-in-one-seo-pack 95,647
LayerSlider 94,031
bb-plugin 92,475
megamenu 89,546
premium-addons-for-elementor 89,292
akismet 87,733
mailchimp-for-wp 85,899
cleantalk-spam-protect 85,524
woocommerce-gateway-stripe 85,097
ml-slider 83,778
borlabs-cookie 82,727
fusion-builder 81,876
wp-pagenavi 81,757
ewww-image-optimizer 81,191
smart-slider-3 80,072

Top 50 Themes

Theme Count
hello-elementor 634,290
Divi 524,258
astra 434,451
flatsome 144,160
Avada 127,673
generatepress 127,171
pub 112,934
twentytwentyfour 86,024
oceanwp 85,856
kadence 81,310
enfold 73,951
sydney 68,854
salient 68,356
twentyseventeen 57,976
h4 57,965
bb-theme 56,264
betheme 53,476
cocoon-master 52,585
blocksy 52,542
dt-the7 47,464
twentytwentyfive 45,506
neve 40,672
Avada-Child-Theme 38,593
woodmart 34,194
gox 34,143
bridge 33,672
twentytwentyone 32,976
lightning 32,206
twentytwenty 30,922
swell 28,990
Impreza 27,393
bricks 26,782
voxel 26,186
twentytwentythree 24,606
Newspaper 24,441
sinatra 23,657
kubio 21,805
twentytwentytwo 20,334
uncode 19,696
epik-redesign 19,283
twentysixteen 18,921
storefront 18,389
pro 18,135
Total 15,131
extendable 14,931
yith-wonder 14,124
hello-theme-child-master 13,776
yootheme 13,391
themify-ultra 13,380
hestia 13,293