Testimonial Masonry
Our team has taken ownership of it, and I am delighted to no end that I can invite all stakeholders.
Documentation
Add the custom CSS for the columns.
Custom CSS for a smoother animation
.testimonials-masonry{
column-count: 3;
column-gap: 1em;
}
.testimonials-masonry > *{
margin-top: 1em;
}
@media screen and (max-width: 1024px) {
.testimonials-masonry{
display: flex;
flex-direction: column;
gap: 1em;
}
.testimonials-masonry > *{
margin-top: unset;
}
}