How to Align Items Using CSS

If you’re trying to center your elements vertically inside a flex container, here’s a simple and effective solution using custom CSS.

:hammer_and_wrench: Steps:

  1. Add a custom CSS class to your ROW element**
    Class name: align-item
  2. Apply the following CSS in the Custom CSS / JS section
    Go to the Advanced → Custom CSS/JS tab and paste this code in the CSS section:
.align-item{
    align-items: center;
}