How can I center images and text in multiple columns?

https://781c4d.myshopify.com/

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!