Solved

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

yassined98
Excursionist
11 0 4

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?

Screenshot (46)_LI.jpg

Accepted Solutions (2)

Bunty
Shopify Partner
133 39 82

This is an accepted solution.

try

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

View solution in original post

Bunty
Shopify Partner
133 39 82

This is an accepted solution.

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

 

View solution in original post

Replies 4 (4)

Bunty
Shopify Partner
133 39 82

This is an accepted solution.

try

.is-active .product-single__thumbnail:after{
 display:none;
}
yassined98
Excursionist
11 0 4

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

Bunty
Shopify Partner
133 39 82

This is an accepted solution.

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

 

yassined98
Excursionist
11 0 4

thanks a lot my friend 🙂