my products in collection page are not clickable

hi everyone. My products in collection page are not clickable. can anyone plese help me to fix this. here is the preview link ofmy store under development. And also when i hover on any product image in the collection page it should display the available sizes. please help me how to do that.

https://vz4l8uiwjulec9q7-67593830638.shopifypreview.com

looking forward to the solution

I think that is probably how your theme is configured. Whether that is a feature or the way it is meant to work is hard to tell, because the product images on the Homepage are clickable, but they also have a different style applied to them when you hover over them. Check your theme settings and maybe try and switch the product listing settings to something else to see if they become clickable. If it all fails and you still want to use that theme then you may end up needing to hire the help of a Shopify Developer.

1 Like

@momsabhiruchi ,

You’ll need to box the images under tag as well, currently it’s limited to the title container. Hence, only title is clickable and not the images.

I hope this helps.
Thanks,
Shubham | Untechnickle

1 Like

Hi @momsabhiruchi ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/base.css
  3. Add code below to end of file
.card__inner  .card__media + .card__content .card__information {
	    display: block !important;
	    opacity: 0;
	}
	.card__inner  .card__media + .card__content .card__information a {
		font-size: 0;
	}
1 Like

Thank you for quick response.

thanks for the reply.

Thank you so much…it worked well.