How can I add an Add to Cart button on featured products and add hover effects?

How can I add Add to Cart Button on each products that shown on featured products section on the home page?

How to add hover effect to the CTA buttons?

Please help!

Thanks in advance

Hello @viefa9821

You can refer the below topic to resolve your problem : https://community.shopify.com/topic/1117010

I hope the above is useful to you.
Best regards,
GemPages Support Team

Hello @viefa9821 ,

To add CTA button to each product, you can:

Go to Online Store → Themes → Actions → Edit Code

Go to Sections → product.liquid file → add the following code:

Buy Now

To add a hover effect to each product on your website, you can use CSS:

.product-box:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}
.product-box {
  transition: all 0.3s ease-in-out;
}

Hope these can help.

Ali Reviews team.