I need to make it so that when you hover the mouse over a thumbnail of a product, it slightly increases in size. In which section is it configured?
1 answer
This does not apply to either woocommerce or wordpress. This is done with the help of css.
Sample code
.image img:hover{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -o-transform: scale(1.1); } See additionally: http://htmlbook.ru/css/transform
|