Vertical Alignment

Hi I want to vertically align the text in the content bands. I’ve read some other posts but couldn’t get the solutions to work for me… I want to achieve something similar to timeline in integrity demo

Hi There,

Please add this custom CSS under Theme Options > CSS:

@media (min-width: 980px){
    .flex.x-container {
        display: flex;
    }
    .x-column.align-center {
        align-self: center;
    }
}

After that adding the flex CSS class to your row and align-center to your columns:

Hope it helps :slight_smile:

1 Like

Perfect. Thx so much!!

1 Like