How to center product names and prices underneath the product images

I need to find a way to format the product names and prices so that they are centered directly below the product image that they go with as opposed to being way offset to the left side below each product. This is on my homepage under featured products.

pass: Testing1234

Any assistance is greatly appreciated.

Thanks

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the tag


Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Hi @jonnbama

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.card__information * {
    text-align: center !important;
}

Here is the result: https://prnt.sc/oZDlX8eDE2uD

I hope this helps

Best,

Daisy

This worked perfectly. Thanks!