Hi, how can i centralise the product name and the price text on the product cards (see attached). but without effecting text elsewhere
my theme is trade and URL is golazocasesuk.myshopify.com
A user seeks to center-align product names and prices on product cards in the Trade theme without affecting text alignment elsewhere on their site.
Proposed Solution:
.card__information, .card-information classestext-align: center and width: 100% propertiesStatus: A solution has been provided but not yet confirmed as implemented or tested by the original poster.
Hi, how can i centralise the product name and the price text on the product cards (see attached). but without effecting text elsewhere
my theme is trade and URL is golazocasesuk.myshopify.com
Hello @golazocases
Go to Online Store > Edit Code > component-card.css file
Add the below code at the bottom of the file
.card__information,.card-information {
width: 100%;
text-align: center;
}
Thanks