Disable Zoom Animation only in internet explorer?

I have an animation on the homepage that gives the hero image a subtle zoom in effect. It looks like garbage in IE but I don’t want to scrap it altogether. Is there a way to disable the animation just in IE? OR is there custom script I can add for when the page loads in IE so it doesn’t glitch out?

Hi @BRDWIL,

Yes if IE :slight_smile:
<!--[if IE]> Your code for IE <![endif]-->

1 Like

You can also target just one version of IE

<!--[if IE 9]>
  Your code for IE
<![endif]-->
1 Like

Sweet! You wouldn’t happen to know what code to use to turn an animation off?

Hum, it depends on your animation.
Have a look a this
http://stackoverflow.com/questions/15719012/how-to-remove-animations-from-appearing-only-in-ie

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.