The text In the Title box duplicates in product page

The texts of the Title Box duplicate.

Can’t seem to find in the code why this is happening.

It’s the same in all products. I use the Dawn Theme.

https://www.falcocycling.com/products/maillot-black-jersey-black-mujer

Please help :slightly_smiling_face:

1 Like

Hi @camilosuan ,

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code just above tag

Result:

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
Makka

1 Like

Hi @camilosuan

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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__title h2 {
    display: none;
}
.product__title h1 {
    margin-bottom: 5px;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

It worked perfectly!! Thanks :slightly_smiling_face: