How can I format my product title better?

Topic summary

A user seeks help reformatting a product title on their Shopify store to display \

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

Hi can you please help put the T- (one line down with the Shirt) Thank you

URL:https://matibrnd.com/products/mykonos-tee

Password: biangu

hey, it works perfectly. you can check if your browser zoom percentage is correct, fix your browser zoom percentage!

Hello MT27,

To decrease the font size of the product title specifically for mobile view, you’ll need to use media queries in your CSS.

Here’s how you can do it:

  1. Go to your Shopify Admin dashboard.
  2. Navigate to Online Store > Themes > Actions > Edit code.
  3. Locate the Base.CSS file and put this code in the bottom
@media only screen and (max-width: 600px) {
  .product__title {
    font-size: 25px; /* Adjust the font size as needed */
  }
}