Decrease the font size of product title and price font size under collection

Hi @clementjaw001 , I hope you are doing well.

  1. Go to Online Store → Theme → Edit code.
  2. Find and open your theme.liquid file
  3. In theme.liquid, paste the below code before
@media screen and (min-width: 750px) {
    .so-homepage .section-template--18230638575866__featured_collection_YqTcxK .card--standard > .card__content .card__information .card__heading a {
        font-size: 15px !important;
    }

.card-information>.price {
    font-size: 15px !important;
    }
}

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!