Quote Originally Posted by Egg Bramhill View Post
Great stuff Acon/Gary. How would you go about this zoom-in effect but maintain the same border demesions. i.e. instead of the complete image zooming-in and getting larger, the zoom-in does the same zoom but remains within the original photo h & W ?
Egg, I think you are asking how to achieve the Simple Gallery zooming of the entire image effect.

This is a separate, simpler CSS effect.

Use the CSS script in the Website Head:
<style>
.scaled {
transform: scale(1.0);
border: 2px solid red;
transition: 1.2s ease-in-out;
}
.scaled:hover {
transform: scale(2.0);
border: 4px solid blue;
}
</style>

Add Name htmlclass="scaled" to any object, including text.
I added 'border' just for the hell of it to show tweaks are not that scary.

If you are asking about zoom and pan, that is more complex.

Acorn