Debut theme - remove gray overlay - collections grid

Solved
Alex68
Tourist
5 0 3

Hi there,

I would like to remove the overlay (grey / opacity) on mouseover on the product images in the collection grids.

I've looked for that in theme.scss.liquid and could not find.

Any help would be appreciated.

Thanks.

Alex.

 

Replies 25 (25)
kittycatt
New Member
10 0 0

Not sure if you made a copy of your original page before you made the changes and that is why I am seeing the code as being different then what it should be. Perhaps you have already changed things. If you have done that... using your original..make another copy and start with that. When you are in your theme.scss.liquid  use Ctrl F to bring up a search bar. Copy and paste this into the search bar

.collection-grid-item__title-wrapper::before {  <---------- Make sure it reads exactly like this.

When you find it post this directly underneath: 

content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: 0;  
opacity:0 ;
}

If you still can not get it to work then you may need to hire someone to help you

Deh
Tourist
5 0 4

Finde the

 

/*================ General slide styles ================*/

 

and finde this code below

.slideshow__overlay {
@include media-query($medium-up) {
@include overlay($z-index-slideshow-text);
opacity: 0.35; <- add this (0 is 0% opacity 1 is 100% - so 0.35 is 35% opacity)

fred_earls
New Member
1 0 0

This is it! NO coding...thanks.

fairylynn
New Member
2 0 0

merci beaucoup ça a marché 

 

khalildesigner
Tourist
5 0 0

thank you sooo much I have been looking for hours 

Flyingccreation
New Member
2 0 0

I did this code and it worked but also took away the hover Opacity, is there a way I can add the hover back?