Same Height

0

Sometimes we want to display to boxes side by side and they have to look the same. CSS doesn’t always help. This plugin will use jQuery to detect the boxes you want and force them all

Version
Last updated
Active installations
WordPress Version
Tested up to
Rating
Total ratings
Tag
This plugin is outdated and might not be supported anymore.

Description

Sometimes we want to display to boxes side by side and they have to look the same. CSS doesn’t always help.

This plugin will use jQuery to detect the boxes you want and force them all to have the same size. The size is uses is the size of the tallest box.

If you have a some parts of your content that need to have the same height, simply wrap them with the [sameheight/] shortcode like this:
[sameheight]
This is a short text
[/sameheight]
[sameheight]
This is a very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very long text
[/sameheight]

When the html renders on your screen, both parts content parts will look equally height. This is very useful if they are floating next to each other and they have a background.

What if I have different sizes in the same page?

You can group shortcodes like this:
[sameheight group=”1″]
This is a very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very long text
[/sameheight]
[sameheight group=”1″]
This is a short text
[/sameheight]
[sameheight group=”2″]
This is another short text
[/sameheight]
[sameheight group=”2″]
This text is long, but not quite as long as the previous one. So, I don’t want these to parts to look as long. But they should still look the same.
[/sameheight]

What if I have a responsive site and I only want the same height to apply in wide-screen, side-by-side configurations?

You can add a breakpoint like this.
[sameheight breakpoint=”xs” ] (You could even use no breakpoint at all)
This is a very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very long text
[/sameheight]
[sameheight breakpoint=”xs” ] (You could even use no breakpoint at all)
This text always has to use the same height than the previous one.
[/sameheight]
[sameheight breakpoint=”md”]
This is a very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very long text
[/sameheight]
[sameheight breakpoint=”md”]
This text only has to use the same height when it is next to the previous, but not when it is underneath on smarphones.
[/sameheight]

You have these breakpoints (those familiar with bootstrap know them):

  • “xs” forces same height for all window widths (extra small window – smartphone). Alternatively, you can use no breakpoint
  • “sm” forces same height for window widths > 768px (small window – small tablet)
  • “md” forces same height for window widths > 992px (medium window – table or small desktop)
  • “lg” forces same height for window widths > 1200px (large window – desktop)

Names and widths are based on bootstrap.

Please, note that shortcodes with different “breakpoint” will be in different groups regardless of the “group” setting. You can still use “group” to separate to groups with the same “breakpoint”.

I have some styles in CSS for my classes. How can I apply classes to the content?

Easy:
[sameheight additional_classes=”my-class1 my-classA”]
This is a short text
[/sameheight additional_classes=”my-class2 my-classB”]
[sameheight]
This is a very, very, very, very, very, very long text
[/sameheight]

Can I use all the possibilities together?

Sure:
[sameheight group=”1″ breakpoint=”md” additional_classes=”my-class1 my-classA” /] will work.

Do I need to use the shortcode?

No! If you are editing your html, you can put the right properties in it. That’s all tha shortcode does. Make sure you add the class ‘same-height’. If you use a break point, add it with a hyphen (-) like this: ‘same-height-xs’, ‘same-height-sm’, ‘same-height-md’, or ‘same-height-lg’. The Javascript is looking for those classes to identify the html elements it has to work on.
If you are grouping boxes, use the ‘same-height-group’ property. Like <div class="same-height" same-height-group="1" >