Image disappearing on categories

You have this style which is causing the issue located in /assets/component-card.css in line number 262

@media screen and (min-width: 990px) {
 .card-wrapper:hover .media.media--hover-effect>img:first-child:not(:only-child) {
  opacity: 0;
 }
}

You can change it to

@media screen and (min-width: 990px) {
.card-wrapper:hover .media.media--hover-effect>img:first-child:not(:only-child) {
  opacity: 0.5;
 }
}

to make the hover effect more subtle and fix this issue

1 Like