We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Show product name and price on hover

Show product name and price on hover

abalves97
Explorer
89 0 18

Hello,

 

I would like to show the price and name of my product on hover. I would also like the hover to be a little bit blurry/faded as seen in the website link attached. 

I am using the spotlight theme.

 

Example of what i want - https://shop.palaceskateboards.com/

 

Website: geffcori.com

password: geffdoe

 

Thank you

Replies 2 (2)

topnewyork
Astronaut
1552 191 253

hello,

1) Go to Online Store
2) Edit Code
3) Find theme.css/base.css file
4) Add the following code in the bottom

.product-card:hover {
    filter: blur(2px); /* Hover effect ko blurry karein */
}

.product-card:hover .product-details {
    opacity: 1; /* Name aur price ko visible karein */
}

.product-details {
    opacity: 0; /* Pehle hidden rakhein */
    transition: opacity 0.3s ease; /* Smooth transition effect */
}

Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
abalves97
Explorer
89 0 18

Hi,

 

Thank you for getting back to me. Unfortunately, your ode does not work.

 

Are there any other ways?