Is there any setting for column to align content vertically center?

Hey Pratik,

There is no such setting for that in BB unfortunately, but you can achieve that via custom CSS. Try adding an extra class to the row or column you want this to apply, then add the CSS snippet below, changing fl-center-content with the class you’ve added. This should work on columns set to equal height, like what you have on your screenshot. :slight_smile:

fl-center-content .fl-col-content {
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

Ben