mm, this is the default code:
.widget-front.hover .round-div, article.hover .round-div {
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
-ms-transform: scale(1.4);
-o-transform: scale(1.4);
transform: scale(1.4);
}
@media (max-width: 979px){
.widget-front.hover .round-div, article.hover .round-div {
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
-ms-transform: scale(1.3);
-o-transform: scale(1.3);
transform: scale(1.3);
cursor: pointer;
}
}
change those 1.4 and 1.3 values , Look that if you set a value > 1.45 (1.32) you’ll have a bad effect (default values are almost the maximum applicable). So it’s not really worthwhile.
p.s.
article.hover .round-div
is for the featured images in the list of posts.
p.p.s.
the featured pages related code above will not work with the plug-in featured pages unlimited.
Hope this helps.