Replies: 0
Hello,
I am using a child theme for Customizr. On the Featured Pages images I have made them square with no hover zoom effect. How do I get the image to show in its full size. At present, it is showing a zoomed-in version.
Code I have used:
/*Change round image borders to square*/
.round-div {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.widget-front.hover .round-div, article.hover .round-div {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}