Text in Product Card (Homepage) **HELP**


Hi There, I have an online store in which on the homepage I have a featured products page. In the product cards, the text won’t center in the middle as shows in the photos: (2nd photo my store) (1st photos what I want to do). Any Help is Appreciated Thanks!

MY STORE: www.gadget-pods.store

Hello @Pods10101 ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

.card__information,.card-information { 
    text-align: center;
}

Thanks

Thanks That Worked, How can I do the same with the pricing shown in the product cards?

1 Like

Update the previous code with this one

.card__information, .card-information {
    text-align: center !important;
}