Full height and vertical align center

Hi,

On the first section on this site, I want full height and vertical align center/middle, but I can’t get it to work?

Hi @Kobber,

You can try adding this in your column’s element css

$el {
    vertical-align: middle;   
    float: none;
    display: table-cell !important;
    height: 100vh !important;
}

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.