Is there a way through the code to make the images in the multicolumn section smaller (e.g., 50% smaller) and add some padding around them?
See the image below.
Is there a way through the code to make the images in the multicolumn section smaller (e.g., 50% smaller) and add some padding around them?
See the image below.
You can try adding this to the custom CSS settings of the section:
.multicolumn-card__image-wrapper {
width: 50%;
height: auto;
margin: 0px auto;
}
I hope that solves your problem!
@biznazz101