Okay
  Public Ticket #3051340
Spacing elements evenly in equal heights columns
Closed

Comments

  •  4
    dBrincat started the conversation

    I am trying to get the elements within these columns to be spaced evenly across different screen widths. At the moments although the columns have the same height, the button which is in an inner row aligned to the bottom, does not "stick" to the bottom, but rather stays under the list.

    Is there a way to have the buttons aligned across all three columns, on different screen widths (desktop+tablet)?

  •  1,877
    Judith replied

    Hi There,

    Thanks for keeping in touch.

    Please send in your admin login credentials so that we may check this out.

    Thanks.

  •   dBrincat replied privately
  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .vc_row.vc_row-o-equal-height.vc_row-o-content-top>.span_12>.wpb_column>.vc_column-inner>.wpb_wrapper {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    dBrincat replied

    That worked, thank you!