how do i align the product and price to the left in prestige theme?

hi! i would like to align my product title and price to the left.

this is how it is now:

and this is how i would like it:

so left align and make the product title bold

website is: https://www.gallerychristian.com/

password: 6399

Hello @christian_russo ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
.product-card__info {
    justify-items: left !important;
}
.justify-items-center {
    justify-items: left !important;
}

Let me know if you need further assistance!

Hello @christian_russo
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.

.product-card__info {
  justify-items: left !important;
  font-weight: 700;
}
  }
.justify-items-center {
  justify-items: flex-start;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks