Pass:BOBS
how do I center the icon and text, for Multicolumns only.
Hi,
You can do that through custom CSS, as following:
.multicolumn-card.content-container {
text-align: center !important;
}
.multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--third-width.multicolumn-card-spacing {
margin: 0 auto !important;
}
Adding the above code at the end of your base.css file should be working as expected.
Cheers!
Working, this is great cheers!