Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #479134

    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.

    #479286

    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

    #479311

    Thanks. That does work, though not optimal because the content may change. I will go with it for now.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Equal Height Columns’ is closed to new replies.