How to remove grey out on product images in Simple Theme?

Solved
Robbie_archive
Excursionist
15 1 4

Cant figure out how to remove the grey out, that happens when you hove over products images in Simple theme.
Heres an example:cap2.PNG

Accepted Solution (1)

Accepted Solutions
Robbie_archive
Excursionist
15 1 4

This is an accepted solution.

Figured it out, under theme.css, there should be this code:

a {
color: $color-link;
text-decoration: none;

&:hover,
&:focus {
opacity: $opacity-link-hover;
}

 

Changing $opacity-link-hover to 1, removes the hover effect

View solution in original post

Reply 1 (1)
Robbie_archive
Excursionist
15 1 4

This is an accepted solution.

Figured it out, under theme.css, there should be this code:

a {
color: $color-link;
text-decoration: none;

&:hover,
&:focus {
opacity: $opacity-link-hover;
}

 

Changing $opacity-link-hover to 1, removes the hover effect