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

Hi,

Is there any setting to align content vertically center in a column?

I am using Twenty Fifteen theme with full height row, but still not luck - http://bsf.io/3k89c

Regards,
Pratik

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

Thanks for your information Ben!

No worries at all, Pratik! Enjoy BB! :slight_smile:

Ben