Jump to content

Product Hover


someone123

Recommended Posts

Hello,

Yes, you should be able to turn the off via CSS.

I assume you are using the Hummingbird theme, but do correct me if I'm wrong.

I see three changes when you hover over a product: there is a bit of zoom on the product, a box shadow is displayed and the Quick View link is displayed too.

Which one of them do you want to turn off?

Edited by Andrei H (see edit history)
Link to comment
Share on other sites

Hello,

For disabling all of them, here are the necessary steps:

1. In themes/hummingbird/assets/css create a file called custom.css.

2. The content of the file should be the following:

/* Disable image zoom */
.product-miniature .product-miniature__link:hover .product-miniature__image {
  transform: none;
}

/* Disable Quck View */
.product-miniature:hover .product-miniature__quickview {
  transform: none;
}

/* Disable shadow */
.product-miniature .card:hover {
  filter: none;
}

3. Delete the cached .css files under themes/hummingbird/assets/cache

4. Reload the page (you might need to hard reload it - ctrl + shift + r in Chrome). It should hopefully work as expected

Edited by Andrei H (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...