If you’re trying to center your elements vertically inside a flex container, here’s a simple and effective solution using custom CSS.
Steps:
- Add a custom CSS class to your ROW element**
Class name:align-item - 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;
}