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

Plugin: equal-height-columns (Used by 3,589 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
s*s*e*2*i*t*r.c*m.au βœ… D 2026-06-15 07:16:52
f*i*b.de (WP 6.9.4) βœ… F 2026-06-15 06:10:46
k*r*n*d*i*c*o.pl (WP 6.9.4) βœ… F 2026-06-15 05:33:53
b*r*-*e*r*a*r*e.nl (WP 6.3.8) ⚠️ F 2026-06-15 04:41:23
r*g*l*.m*f.es βœ… F 2026-06-14 23:49:35
e*q*e*e.a*s*.fr βœ… F 2026-06-14 20:49:44
l*b*n*h*l*e*k*e*e*d.de (WP 6.9.4) βœ… F 2026-06-14 20:34:44
c*m*a*s*o*i*i*y.nl (WP 7.0) βœ… F 2026-06-14 20:26:07
p*r*a*.r*n*h*i*i.com βœ… B 2026-06-14 18:47:02
o*i*.net (WP 6.8.5) βœ… F 2026-06-14 17:30:50
h*l*y*n*r*j*c*m*n*g*m*n*.c*.nz βœ… F 2026-06-14 17:16:39
f*c*s*e*p*e.c*m.au (WP 6.9.4) βœ… F 2026-06-14 16:51:07
r*k*s*.hu βœ… F 2026-06-14 16:40:25
s*b*i*z*r*e*s*e*-*w*e*q*w*u.l*v*-*e*s*t*.com (WP 7.0) βœ… F 2026-06-14 15:49:17
p*t*.c*m.au (WP 7.0) βœ… F 2026-06-14 15:40:46
p*o*e*t*l.hu βœ… D 2026-06-14 13:12:00
r*g*o*a*w*r*e*n*c*a*-*o*h*r.de (WP 7.0) βœ… B 2026-06-14 12:32:28
l*i*o.ai (WP 6.9.4) βœ… F 2026-06-14 11:00:17
t*m*c*u*i*e*c*u*a*.cl (WP 6.8) βœ… F 2026-06-14 08:53:02
c*l*a*.h*n*i*4.fr (WP 6.7.5) βœ… F 2026-06-14 07:02:45
l*v*n*.de βœ… F 2026-06-14 05:35:53
c*s*o*e*.c*m.au (WP 7.0) βœ… F 2026-06-14 04:10:46
m*s*y*e*b*a*t*o*e*-*u*l*t.de (WP 7.0) βœ… F 2026-06-14 01:42:24
c*n*e*t*i*e.c*m.au (WP 6.9.4) βœ… F 2026-06-14 01:42:24
e*g*f*s*o.nl (WP 6.8.5) βœ… F 2026-06-14 00:14:40
e*e*g*e*.c*m.au (WP 5.4.16) ⚠️ F 2026-06-13 23:54:12
k*n*r*j*g*o*i*g*n.com (WP 7.0) βœ… F 2026-06-13 23:51:41
i*k*t*k*a*e*.ru (WP 7.0) βœ… F 2026-06-13 22:25:45
t*a*i*s*n*u*i*e*s.c*m.au βœ… B 2026-06-13 20:26:42
g*o*a*.c*c*m*r*i*s.com (WP 6.1.10) ⚠️ F 2026-06-13 17:02:47
s*c.pl (WP 7.0) βœ… F 2026-06-13 16:57:36
k*r*k*v*.gr (WP 7.0) βœ… F 2026-06-13 16:38:03
c*s*l*c*t*l*.be βœ… F 2026-06-13 16:17:46
l*o*s*a*e*v*n*o*t*a*d.nl (WP 7.0) βœ… F 2026-06-13 15:38:30
s*u*h*r*a*i*o*a*o*e*u*l*e*s*s*o*i*t*o*.g*o*t*z*n*a*p.com (WP 7.0) βœ… F 2026-06-13 14:15:12
b*f*a*o*r*v*a*i*a*h*s*i*a*.com βœ… F 2026-06-13 13:41:40
s*i*e*e*h*e.com (WP 6.9.4) βœ… F 2026-06-13 11:13:13
i*s*t*i*t*r*o*d*s*g*.com (WP 6.8.5) βœ… F 2026-06-13 09:51:44
s*o*e.i*-*i*e*d.com (WP 6.8.5) βœ… F 2026-06-13 09:51:44
p*o*i*e*o*t*n.nl (WP 7.0) βœ… D 2026-06-13 09:44:10
g*m*l*n*t*e*a*y.o*g.uk (WP 7.0) βœ… F 2026-06-13 07:46:26
l*v*-*l*a*b*m*.p*n*h*o*s*t*.io (WP 6.9.4) βœ… F 2026-06-13 06:51:43
n*n.e*u.lb (WP 6.9.4) βœ… F 2026-06-13 06:44:44
h*r*s*a*e*.p*l*c*r.com βœ… D 2026-06-13 06:39:08
l*s*u*i*e*s*l*s*e*.be βœ… A 2026-06-13 06:30:48
u*f*n*r*h*f*i*a.c*m.tn βœ… F 2026-06-13 06:06:36
g*e*n.u*b*l*j.ro (WP 5.6.17) ⚠️ F 2026-06-13 04:14:22
s*o*e*s*l*n*u*s*i.fi βœ… B 2026-06-13 04:07:27
l*b*u*e*o*i*t*.org βœ… F 2026-06-13 03:04:24
d*s*h*o*m*k*r*a*h*t*a*r.nl βœ… F 2026-06-13 01:27:48
b*z*e*u*g*c*a*h*m*n*h*i*.de βœ… D 2026-06-12 23:59:05
n*o*a.mw (WP 7.0) βœ… D 2026-06-12 21:58:57
d*v*o*t*p*a*.w*e*g*n*p*w*r*d.com βœ… F 2026-06-12 21:58:56
s*-*a*c*.c*.uk βœ… B 2026-06-12 19:13:15
e*t*r*t*l*-*i*d*r*a*h*e*.de (WP 7.0) βœ… F 2026-06-12 19:09:04
b*o*b*n*r.com βœ… F 2026-06-12 17:39:43
s*o*r*o*.eu βœ… F 2026-06-12 16:57:11
r*l*g*x*a*n.w*e*g*n*.com βœ… F 2026-06-12 16:56:54
j*p*n*n*m*r*.com βœ… D 2026-06-12 16:24:50
s*e*a*n*s.com βœ… F 2026-06-12 15:33:23
e*.s*i*o*-*.ru (WP 5.5) ⚠️ F 2026-06-12 14:31:25
h*o*l*.com βœ… F 2026-06-12 14:13:28
p*r*n*r*a*d*a*s.com βœ… F 2026-06-12 13:30:37
s*n*a*r*i*c*m*n*-*t*f*u*g.de (WP 7.0) βœ… F 2026-06-12 13:14:27
l*b*o*s.c*.uk (WP 7.0) βœ… D 2026-06-12 12:54:21
d*h*i*t.w*e*g*n*.com βœ… F 2026-06-12 12:38:22
d*p.jp (WP 7.0) βœ… F 2026-06-12 03:41:26
a*p*u*r*y.c*.uk (WP 7.0) βœ… F 2026-06-12 01:16:11
c*a*h*b*z*u*r*.pl (WP 6.5.8) βœ… F 2026-06-11 23:15:29
a*k*w.c*.uk βœ… F 2026-06-11 12:40:40
h*r*e*l*t*e*s*p*o*t.nl (WP 6.9) βœ… F 2026-06-11 12:07:02
p*m*z*a*c*y*.pl βœ… F 2026-06-11 11:09:33
s*g*u*.t*c*n*c*l*a*i*.net βœ… B 2026-06-11 09:31:41
q*a*i*y*r*d*g*o*p.c*m.au βœ… B 2026-06-11 03:56:48
p*h*c*n*e*e*v*r*n*e*i*g.nl (WP 6.9.4) βœ… F 2026-06-10 22:19:59
e*a*m*c*b*s.c*b.lv (WP 7.0) βœ… F 2026-06-10 20:00:12
a*i*.o*g.tn (WP 6.8.5) βœ… B 2026-06-10 18:31:24
p*k*k*h*h*g*.s*h*o*.nz (WP 7.0) βœ… F 2026-06-10 16:15:44
g*e*t*i*s*n*e*s*a*i*n.c*.uk (WP 7.0) βœ… F 2026-06-10 15:24:59
n*-*e*.ru (WP 7.0) βœ… F 2026-06-10 12:04:49
c*b*u*.com βœ… D 2026-06-10 01:18:39
s*l*t*o*s.b*u*d*.c*m.au βœ… B 2026-06-09 20:13:59
a*i*e*i.ch βœ… F 2026-06-09 17:29:47
j*c.a*a*a*a.gov (WP 6.9.4) βœ… F 2026-06-09 03:20:05
v*g*i*a*c*i*e*t*.c*.uk (WP 6.8.5) βœ… F 2026-06-09 02:34:24
a*t*p*r*o*r*.nl (WP 7.0) βœ… D 2026-06-09 01:49:05
t*a*k*d*.c*m.au βœ… B 2026-06-09 01:32:20
s*i*s*h*u*s*e*r*n*e.fr βœ… F 2026-06-08 23:56:00
d*g*t*l*h*m*.c*m.au (WP 7.0) βœ… F 2026-06-08 23:41:47
e*n*.net (WP 6.8.5) βœ… B 2026-06-08 23:40:52
m*n*.c*u*s*s*u*r*.co (WP 6.9.4) βœ… F 2026-06-08 21:42:07
p*i*t*n*c*a*l*t*e.com (WP 7.0) βœ… F 2026-06-08 21:12:10
c*i*d*i*e.gi (WP 6.6.2) βœ… B 2026-06-08 19:46:04
c*r*n*d*v*.w*e*g*n*p*w*r*d.com βœ… F 2026-06-08 18:39:31
a*e*z*a*a*.ch (WP 4.4.2) ⚠️ F 2026-06-08 18:37:19
w*v*r*y*e*c*m*h*m*.com βœ… F 2026-06-08 18:06:46
l*o*s*l*d*e*u*.de (WP 6.7.5) βœ… F 2026-06-08 16:38:58
k*o*n*r*a*p*o*u*t*o*s.ca βœ… D 2026-06-08 16:11:16
t*s*.r*v*z*e*a*d.nl βœ… F 2026-06-08 13:42:14
o*c*e*.com βœ… D 2026-06-08 13:30:32

Top 50 Plugins

Plugin Count
elementor 1,845,026
contact-form-7 1,814,379
elementor-pro 1,074,639
woocommerce 834,328
revslider 631,057
jetpack 474,701
js_composer 442,043
wp-rocket 343,148
essential-addons-for-elementor-lite 303,315
gravityforms 291,645
complianz-gdpr 264,632
cookie-law-info 238,008
instagram-feed 233,160
google-site-kit 227,086
sitepress-multilingual-cms 226,612
google-analytics-for-wordpress 218,275
header-footer-elementor 214,731
elementskit-lite 214,055
bluehost-wordpress-plugin 191,979
gutenberg 165,128
gutenberg-core 163,247
cookie-notice 156,862
litespeed-cache 137,160
the-events-calendar 135,646
wpforms-lite 131,895
gtranslate 131,059
astra-sites 121,430
popup-maker 118,674
woocommerce-payments 114,788
tablepress 113,253
coblocks 101,881
honeypot 100,128
astra-addon 97,326
duracelltomi-google-tag-manager 96,036
wp-smushit 95,656
all-in-one-seo-pack 95,213
LayerSlider 93,578
bb-plugin 92,205
megamenu 89,033
premium-addons-for-elementor 88,891
akismet 87,453
mailchimp-for-wp 85,480
cleantalk-spam-protect 85,280
woocommerce-gateway-stripe 84,759
ml-slider 83,225
borlabs-cookie 82,106
fusion-builder 81,492
wp-pagenavi 81,138
ewww-image-optimizer 80,807
smart-slider-3 79,595

Top 50 Themes

Theme Count
hello-elementor 631,095
Divi 521,797
astra 432,703
flatsome 142,108
Avada 127,084
generatepress 125,483
pub 112,409
oceanwp 85,449
kadence 80,767
twentytwentyfour 80,280
enfold 73,503
salient 68,110
h4 57,690
twentyseventeen 57,578
bb-theme 56,107
betheme 53,173
cocoon-master 52,483
blocksy 52,231
dt-the7 47,224
twentytwentyfive 45,213
sydney 42,519
neve 40,452
Avada-Child-Theme 38,420
woodmart 34,046
gox 34,021
bridge 33,548
twentytwentyone 32,826
lightning 31,937
twentytwenty 30,760
swell 28,919
Impreza 27,210
bricks 26,663
voxel 25,694
twentytwentythree 24,488
Newspaper 24,266
sinatra 22,661
kubio 21,620
twentytwentytwo 20,266
uncode 19,571
epik-redesign 19,281
twentysixteen 18,733
storefront 18,307
pro 18,094
Total 15,054
extendable 14,875
yith-wonder 14,120
hello-theme-child-master 13,717
themify-ultra 13,308
yootheme 13,284
hestia 13,196