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
b*e*f*n*r*i*i*g.com βœ… D 2026-05-08 15:50:48
l*t*e*h*a*s*0.com βœ… F 2026-05-08 15:46:05
w*-*e*n*e*t.org βœ… F 2026-05-08 15:31:05
s*a*c*a*t*o*s.com (WP 6.9.4) βœ… F 2026-05-08 15:21:54
d*g*t*l*s*c*r*t*.eu βœ… F 2026-05-08 15:14:18
p*e*m*n*s*o*t*n*.org βœ… F 2026-05-08 14:23:52
e*o*e*d*-*a*a*e*t*-*e*-*r*s.com (WP 6.9.4) βœ… F 2026-05-08 14:17:54
e*o*a*e*a*p*c.com (WP 6.9.4) βœ… F 2026-05-08 14:02:20
d*y.i*y*p*o*s.com βœ… F 2026-05-08 13:28:28
w*b*i*a*c*d*r*c*.com βœ… F 2026-05-08 13:13:35
m*i*c*.com βœ… B 2026-05-08 13:12:06
m*i*e*l*a*a*c*.com βœ… F 2026-05-08 13:06:32
t*e*o*e*v*e*.com (WP 6.9.4) βœ… F 2026-05-08 13:03:25
t*e*e*t*i*t*r*s*o*.com (WP 6.9.4) βœ… F 2026-05-08 12:53:05
a*e*c*o*u*o*o*i*n.com (WP 6.8.2) βœ… F 2026-05-08 12:49:00
a*l*a*u*a*c*.w*e*g*n*.com βœ… F 2026-05-08 12:36:16
e*o*a*t*n*o*a*.com βœ… D 2026-05-08 12:31:32
p*a*i*u*s*r*t*g*e*.com (WP 6.9.4) βœ… A 2026-05-08 12:23:00
m*k*h*.hu βœ… F 2026-05-08 12:09:41
b*n*b*u*.nl (WP 6.9.4) βœ… C 2026-05-08 11:25:38
g*m*p*o*o*i*n.com βœ… F 2026-05-08 11:22:33
n*v*l*n*e*t*i*m*n*.c*.uk βœ… D 2026-05-08 10:51:32
o*s*r*a*o*i*a*t*l*t*l*a*.com βœ… D 2026-05-08 10:43:11
l*t*o*o*r*e.com (WP 6.9.4) βœ… F 2026-05-08 10:43:05
y*u*b*d*h*b.c*m.au βœ… B 2026-05-08 10:30:03
s*u*a*a*d*n.no βœ… F 2026-05-08 10:16:45
c*s*l*t*o*h*e*.c*m.au βœ… F 2026-05-08 10:10:30
l*t*c*s*l*s.com βœ… F 2026-05-08 10:09:56
p*o*p*r*o*t*o*r*.com βœ… F 2026-05-08 09:42:33
e*e*g*n*y.t*e*i*l*g*v*t*.com βœ… F 2026-05-08 09:41:26
b*a*k*o*.media (WP 6.9.4) βœ… D 2026-05-08 08:51:35
c*a*h*a*t*d*s*g*.com βœ… F 2026-05-08 08:34:17
d*p*i*s*.org βœ… F 2026-05-08 08:12:38
s*s*n*c*m*b*l*.com (WP 6.8.5) βœ… F 2026-05-08 07:54:11
s*s*n*e*m*i*d*r.com (WP 6.9.4) βœ… F 2026-05-08 07:45:41
n*w*.r*s*a*c*.u*i.edu (WP 6.9.4) βœ… F 2026-05-08 06:28:09
b*t*e*.at βœ… F 2026-05-08 05:40:05
a*g*i*a*i*g.com βœ… F 2026-05-08 05:11:09
b*n*l*.de (WP 6.9.4) βœ… D 2026-05-08 04:56:45
p*a*t*t*o*p*t.com βœ… F 2026-05-08 04:46:09
b*a*e*f*r*s*c.com βœ… F 2026-05-08 04:19:59
t*e*o*s*i*u*l*a*e*.com (WP 6.9.4) βœ… F 2026-05-08 03:36:58
a*v*o*m*n*c*t*o*.ca (WP 6.9.4) βœ… F 2026-05-08 03:33:38
s*r*m*r*i*i*g*e*i*w.com (WP 6.8.5) βœ… F 2026-05-08 03:11:03
p*a*n*d*e*h*o*f*o*i*a.com βœ… F 2026-05-08 03:03:04
p*a*n*d*e*h*o*c*r*s.com βœ… F 2026-05-08 03:03:04
1*r*g*.com βœ… F 2026-05-08 02:46:17
a*d*n*u*o*f.com βœ… F 2026-05-08 02:43:57
m*e*o*e*n.com (WP 6.9.4) βœ… F 2026-05-08 02:26:41
g*b*r*i*t*r*.com βœ… F 2026-05-08 02:20:05
p*a*e*l*g*s*i*s.com (WP 6.8.5) βœ… F 2026-05-08 01:40:31
s*r*e*y*r*u*s*.com (WP 6.9.4) βœ… D 2026-05-08 01:26:13
s*r*e*i*g*s*r*e*y.com βœ… F 2026-05-08 01:00:16
i*e*s*t*o*l*n*.com (WP 6.9.4) βœ… B 2026-05-08 00:39:23
s*a*e*e*l*l*n*s*i*c*l*y.c*.uk (WP 6.5.8) βœ… F 2026-05-08 00:33:28
v*g*i*h*l*e*.c*.uk (WP 6.8.5) βœ… F 2026-05-08 00:33:28
c*n*a*t*i*t*n*.org βœ… F 2026-05-08 00:23:39
s*r*p*r*c*s*o*s*o*a.com βœ… F 2026-05-08 00:09:12
m*n*y*u*l*f*.de βœ… F 2026-05-08 00:03:47
m*d*g*t*l*h*m*.com (WP 6.9.4) βœ… F 2026-05-07 23:52:02
c*n*r*s*s*a*a*.com (WP 6.7.5) βœ… F 2026-05-07 23:44:35
1*3*h*s*.com βœ… B 2026-05-07 23:31:18
s*r*w*a*t*l*c.com βœ… F 2026-05-07 23:01:27
g*i*t*i*c*.de (WP 6.9.4) βœ… F 2026-05-07 22:43:18
h*n*a*m*s*h*n*n*a*.de (WP 6.8.5) βœ… F 2026-05-07 22:07:45
l*r*d*t*.com (WP 6.9.4) βœ… F 2026-05-07 22:06:05
r*v*z*e*a*d.nl βœ… F 2026-05-07 21:51:27
p*t*o*.com βœ… D 2026-05-07 21:50:17
p*t*m*r*e*c*c*n*e*s.com βœ… F 2026-05-07 21:45:43
s*o*t*r*c*s*o*w*r*.com (WP 6.9.4) βœ… F 2026-05-07 21:39:31
p*l*v*r*i*i*.fi πŸ”“ F 2026-05-07 20:44:24
a*w*t*k*e*n*m*l*a*e.com (WP 6.9.4) βœ… F 2026-05-07 20:29:29
e*b*n*a*t*m*t*v*.com βœ… F 2026-05-07 20:27:19
m*c*l*t*s*.com βœ… F 2026-05-07 20:24:33
l*p*t*t*e*n*g*e*o*l*.com βœ… F 2026-05-07 20:18:20
s*o*l*n*s*o*f*o*s*.com (WP 6.9.4) βœ… F 2026-05-07 20:07:39
l*p*r*e*.com βœ… F 2026-05-07 20:03:28
t*s*c*-*v.com (WP 6.9.4) βœ… F 2026-05-07 19:56:30
p*o*o*q*i*o*o*u*i*n*.com (WP 6.9.4) βœ… F 2026-05-07 19:46:52
p*s*s*o*t*o*d*b*i.com βœ… F 2026-05-07 19:07:59
p*t*o*.fi (WP 6.9.4) βœ… F 2026-05-07 19:04:58
v*r*-*r*o*l*n.com βœ… F 2026-05-07 18:39:59
e*u*l*i*e*n*m*l*o*p*t*l.com (WP 6.9.4) βœ… F 2026-05-07 18:37:54
c*t*z*n*.tv (WP 6.3.8) ⚠️ F 2026-05-07 18:36:14
c*o*s*b*y*t*t*h*a*t*.org πŸ”“ F 2026-05-07 18:10:26
f*e*l*n*e*o*y*r*t*r.c*m.au βœ… B 2026-05-07 18:05:43
g*t*w*y*h*c*e*.com βœ… F 2026-05-07 17:39:25
i*y*u*.com βœ… F 2026-05-07 17:35:06
d*g*t*l*a*d*i*h.agency (WP 6.9.4) βœ… F 2026-05-07 16:55:15
v*r*o*s*i*e*l*e*s.com βœ… F 2026-05-07 16:54:23
c*s*t*a*.com (WP 6.9.4) βœ… F 2026-05-07 16:53:22
g*o*p*a*e.be (WP 6.9.4) βœ… F 2026-05-07 16:28:16
f*o*f*c*o*.be (WP 6.9.4) βœ… A 2026-05-07 16:28:16
p*o*i*e*c*i*s*.com (WP 6.9.4) βœ… F 2026-05-07 16:27:40
p*o*g*l*t*o*.com βœ… F 2026-05-07 16:24:03
c*r*e*.club (WP 6.9.4) βœ… F 2026-05-07 16:22:05
b*u*s*i*k*o*k*l*b.c*.uk (WP 6.9.4) βœ… F 2026-05-07 16:09:46
t*s*e*f*t*l*e*i*b*r*h.c*.uk βœ… F 2026-05-07 16:09:46
c*p*t*l*u.ie βœ… F 2026-05-07 15:39:59
g*s*e*u*l*w.com βœ… F 2026-05-07 15:28:10

Top 50 Plugins

Plugin Count
elementor 1,863,811
contact-form-7 1,834,259
elementor-pro 1,084,737
woocommerce 841,504
revslider 637,027
jetpack 477,795
js_composer 446,482
wp-rocket 346,868
essential-addons-for-elementor-lite 307,321
gravityforms 298,737
complianz-gdpr 268,310
cookie-law-info 241,052
instagram-feed 235,232
google-site-kit 229,022
sitepress-multilingual-cms 228,686
google-analytics-for-wordpress 220,012
elementskit-lite 217,161
header-footer-elementor 216,712
bluehost-wordpress-plugin 192,286
gutenberg 166,208
gutenberg-core 164,802
cookie-notice 159,414
litespeed-cache 139,677
the-events-calendar 137,352
wpforms-lite 132,921
gtranslate 132,383
astra-sites 122,200
popup-maker 119,758
woocommerce-payments 115,414
tablepress 115,169
coblocks 102,858
honeypot 101,347
astra-addon 98,236
duracelltomi-google-tag-manager 96,995
wp-smushit 96,513
all-in-one-seo-pack 96,072
LayerSlider 94,460
bb-plugin 92,755
megamenu 90,070
premium-addons-for-elementor 89,704
akismet 87,990
mailchimp-for-wp 86,263
cleantalk-spam-protect 85,768
woocommerce-gateway-stripe 85,389
ml-slider 84,268
borlabs-cookie 83,304
wp-pagenavi 82,284
fusion-builder 82,251
ewww-image-optimizer 81,532
smart-slider-3 80,595

Top 50 Themes

Theme Count
hello-elementor 637,476
Divi 526,924
astra 436,429
flatsome 146,716
generatepress 130,174
Avada 128,285
pub 113,466
twentytwentyfour 86,742
oceanwp 86,293
kadence 81,761
enfold 74,329
sydney 71,967
salient 68,622
twentyseventeen 58,325
h4 58,223
bb-theme 56,402
betheme 53,790
blocksy 52,892
cocoon-master 52,692
dt-the7 47,680
twentytwentyfive 45,869
neve 40,900
Avada-Child-Theme 38,765
woodmart 34,369
gox 34,299
bridge 33,829
twentytwentyone 33,131
lightning 32,294
twentytwenty 31,108
swell 29,039
Impreza 27,526
voxel 27,308
bricks 26,890
twentytwentythree 24,769
Newspaper 24,628
sinatra 23,964
kubio 22,025
twentytwentytwo 20,416
uncode 19,815
epik-redesign 19,284
twentysixteen 19,075
storefront 18,483
pro 18,190
Total 15,212
extendable 15,003
yith-wonder 14,132
hello-theme-child-master 13,858
yootheme 13,465
themify-ultra 13,437
hestia 13,376