Hi,
I have a page with 3 columns, different background colors. I am trying to equalize the height of the columns to match the longest column because of the different colors of the columns
Do you know how this can be accomplished?
Thanks for your help.
Hi mrdan!
Try dragging a codeblock element to the page content and add this inside.
<style type = "text/css">
@media screen and (min-width: 767px) {
.entry-content .flex_column div {
min-height: 1000px;
}
</style>
Best regards,
Elliott
Thanks. That does work, though not optimal because the content may change. I will go with it for now.