Zoom effect on image hover

Add this code to the Custom CSS field on the Appearance tab of your Pricing Table widget’s settings:

.es-picture-container img {
  transition: 0.5s;
}

.es-picture-container img:hover {
  transform: scale(1.3);
}
1 Like