How can I make it so that hovering over products on the homepage displays information, but when I’m on the collection page, I want the price and name to be displayed underneath the product at all times? I am using Impact theme. Thank you.
Wrap these elements with a container element, such as a <div>, and assign it a class, for example, product-info-container.
Add the following CSS code to your theme’s custom CSS section or CSS file:
/* Display product information underneath on collection page */
.collection-grid-item .product-info-container {
display: block;
}
/* Hide product information on hover */
.collection-grid-item:hover .product-info-container {
display: none;
}
/* Show product information on hover on the homepage */
.homepage-grid-item:hover .product-info-container {
display: block;
}