remove thumbnail frame on the product page of the ( VENTURE THEME)

how can i remove the frame of the venture theme thumbnail? honestly I don’t like it .. if it’s not possible can I at least make it white to hide it?

try

.is-active .product-single__thumbnail:after{
 display:none;
}

sorry I’m not very practical in the code, exactly what steps should I do to paste this script?

My apologies, go to Themes, on your live theme (if you are adventurous, otherwise first try it on a duplicate), Edit code. On the search box of the theme editor, search for ‘theme.scss.liquid’ and open the file. Scroll to the bottom and paste.

Alternatively, you can look for

.is-active &:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid $color-accent;
  }

in this file and remove

thanks a lot my friend :slightly_smiling_face: