Skip to content

Instantly share code, notes, and snippets.

@rniswonger
Created October 28, 2020 22:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rniswonger/cfe72ab7bd1a3a39b5e589405e142559 to your computer and use it in GitHub Desktop.
Save rniswonger/cfe72ab7bd1a3a39b5e589405e142559 to your computer and use it in GitHub Desktop.
Avada Theme: Equal height Content Boxes
/*
Add this code to the Avada Custom CSS.
Add the class "equal-height" to your Content Boxes Options container, not a single Content Box.
The editor preview will not show the change but reload the live page to see the results.
*/
.fusion-content-boxes.equal-height {
display: flex;
align-items: stretch;
flex-wrap: wrap;
}
.fusion-content-boxes.equal-height .col {
height: 100%;
}
@eci-chris
Copy link

Thank you, so annoying this isn't the default behavior.

@ButtiBBQ
Copy link

This is very helpful. Thank you for making this public

@AshWReaper
Copy link

Thanks bud; very helpful indeed!

@jonathan-soifer
Copy link

thxxx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment