Avada Theme: Equal height Content Boxes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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%; | |
} |
This is very helpful. Thank you for making this public
Thanks bud; very helpful indeed!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, so annoying this isn't the default behavior.