So im facing an issue with some code, i have quickly written a simple example to show the effect in jsfiddle: http://jsfiddle.net/0v0syunc/
What i need to do is prev
What you're doing seems to be a little obtuse, however given that, you need to scale your child h2 by the inverse ratio (1/1.3):
.box:hover h2 {
-webkit-transform: scale(0.769);
-ms-transform: scale(0.769);
transform: scale(0.769);
}
The issue being that the scale is being applied to the parent and all children, so you need to reverse it for the child to 'nullify' the effect.