Vertically Center an Image in a Block
What does this code do?
This code snippet will allow you to vertically center an image in various image blocks.
Code Snippets
Copy and paste the code for the image block style of your choice into Design > Custom CSS.
/* Card Image Block */ .image-block .design-layout-card { display: flex; align-items: center; } /* Overlap Image Block */ .image-block .design-layout-overlap { display: flex; align-items: center; } /* Collage Image Block */ .image-block .design-layout-collage { display: flex; align-items: center; }
How To Use It
Copy and paste the code as indicated above.