Hello, how do I center align prices for product recommendations? Could you give the code for base.css? Thank you.
1 Like
@lextui
Welcome to the Shopify community!
Thanks for your good question.
Please share your store URL.
So that I will check and let you know the exact solution here.
.product-recommendations .price{
text-align: center !important;
margin: 0 auto !important;
}
Add this code in the component-card.css file.
share your store url please
@lextui add this code in component-card.css
.card-information{text-align: center;}
https://souvenirthestore.com/
happyweekend
https://souvenirthestore.com/
happyweekend
Hello @lextui
please open component-card.css inside assets of your theme and paste the below code bottom of the file.
.product-recommendations .price{
text-align: center !important;
margin: 0 auto !important;
display: initial !important;
}
1 Like