Product Page "You may also like" portion - How to make font size of title and price the same?

Hi please help how to make the “You may also like” portion in product page’s title and price the same font size? and have the price text in bold also. Thank you

Shop url - https://greenpaxusa.myshopify.com/

Hi @GreenPax

Im not sure which size you like to use. I just change the price size.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
product-recommendations.related-products .price {
    font-size: 1.3rem;
    font-weight: bold;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Thank you!!