I am using the Crave theme and I was wondering if it was possible to get all the text (product title, price, quick add, etc) under the image of the product to be centered instead of aligned left?
On the featured collections section on the homepage as well as the separate collections pages.
Hello @argnarb
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-card.css
add this code at the end of the file and save.
.card__heading {
text-align: center !important;
}
.card-information > :not(.visually-hidden:first-child) + :not(.rating):not(.card__information-volume-pricing-note) {
text-align: center !important;
}