None of my products are clickable anymore?

Hello,

I have just logged on to find that none of my product links are clickable anymore. How can I fix this? Super worried. Thanks so much.

PW: ellaella

The a tag is applied on the product title. In order to make the image clickable it should be applied over there too

Because you’ve added this code:

.card--standard > .card__content {
   position: relative;
   left: 16px;
   /* adjust this value as needed */
}

This element can’t be position: relative – this prevents your from clicking the product image.
You can try instead

.card--standard > .card__content {
  margin-left: 16px;  
  /* adjust this value as needed */
}

or use padding-lfet:16px instead of margin-left...

The theme uses a transparent overlay which is absolutely positioned over entire product card, but it is a child of the <a>.
Setting wrong parent of this <a> position: relative makes this overlay cover wrong area.

thanks so much!! very helpful