Hi
I have some nice effect being applied to my images using this css
.avia-image-container-inner:hover img {
-webkit-transform: scale(1.05,1.05);
-moz-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
How ever I don’t think it works on this page
http://176.32.230.26/warringtonsmileclinic.co.uk/treatments/dental-implants/
The page has an id of 172 so how can I exclude this page from inheriting the styles mentioned above?
I have an idea i need to use something like
.page-id-172 .avia-image-container-inner:hover img {
Some css rules here to revert to defaults
}
Any ideas/feedback much appreciated
Hi codecreative!
Try this.
.page-id-172 .avia-image-container-inner:hover img {
-webkit-transform: none;
-moz-transform: none;
transform: none;
-webkit-transition: none;
-moz-transition: none;
transition: none;
}
Regards,
Elliott