How to remove the black box around product images?

Hello,

How do I get rid of the black box around the product when you’re viewing it? How can I make it transparent? Pictures are below.

Hello @vendxtta :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.product__media {
    background: transparent !important;
}

The result

Hope that helps!