Hi.
How can I turn hover effect off on the shop page?
I would like to display the picture, color variations, the price and then the button. What file do I need to change.
Link: http://lishinu.bordomat.com/?post_type=product
Thank you.
M
.archive.woocommerce ul.products li.product:hover > a > img,
.related ul.products li.product:hover > a > img,
.upsells.products ul.products li.product:hover > a > img,
.woocommerce > ul.products li.product:hover > a > img {
opacity: 1;
-webkit-transform: scale(1) !important;
-moz-transform: scale(1) !important;
-ms-transform: scale(1) !important;
-o-transform: scale(1) !important;
transform: scale(1) !important;
}
ul.products li.product:hover h3,
ul.products li.product:hover .price {
top: 0;
}
.archive.woocommerce ul.products li.product:hover .add_to_cart_button,
.related ul.products li.product:hover > .add_to_cart_button,
.upsells.products ul.products li.product:hover > .add_to_cart_button,
.woocommerce > ul.products li.product:hover > .add_to_cart_button {
bottom: 5px;
}
... you can also add mentioned code at the end of additional.css file.
.archive.woocommerce ul.products li.product > a > img,
.related ul.products li.product > a > img,
.upsells.products ul.products li.product > a > img,
.woocommerce > ul.products li.product > a > img {
opacity: 1;
margin-bottom: 25px;
-webkit-transform: scale(.9) !important;
-moz-transform: scale(.9) !important;
-ms-transform: scale(.9) !important;
-o-transform: scale(.9) !important;
transform: scale(.9) !important;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.archive.woocommerce ul.products li.product:hover > a > img,
.related ul.products li.product:hover > a > img,
.upsells.products ul.products li.product:hover > a > img,
.woocommerce > ul.products li.product:hover > a > img {
opacity: 1;
-webkit-transform: scale(1) !important;
-moz-transform: scale(1) !important;
-ms-transform: scale(1) !important;
-o-transform: scale(1) !important;
transform: scale(1) !important;
}