Dawn Theme hide first Product Image in Product Page

Hey guys, maybe someone can help me.

On the start page we have a product bar with 4 products and a thumbnail image of the product.

If you go on the product, the product page opens.
There you can see the cropped image which should be hidden on the product page. Can anyone help?

Hi @onutue

Can I take a look?

hey, sent PM :slightly_smiling_face:

Hi @onutue

Thank your for the information. Would you like to hide it? Or fix the crop image?

To fix the crop imagge. Try 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__media.media.media--transparent img {
    object-fit: revert;
}

And to hide it.

Same Instruction.

#Slide-template--19606352363847__main-44463094563143 > div > modal-opener > div.product__media.media.media--transparent > img {
    display: none;
}

I hope it help.

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