Home Forums Jevelin Theme How do I vertically center content in a column Reply To: How do I vertically center content in a column

Home Forums Jevelin Theme How do I vertically center content in a column Reply To: How do I vertically center content in a column

Solution for this topic

To align it please remove the applied padding and then use the following custom CSS code.

 

.sh-section-6b60dc9e2043efe53db6b9bfc8f9a97c .fw-row {
    display:flex;
    align-items: center; /* Vertical center alignment */
    justify-content: center; /* Horizontal center alignment */
}