Ankit
Ankit

Reputation: 13

Flexslider is not working in IE

I am trying to implement the basic flexslider on our website. It works well with chrome, Firefox and safari. But in all versions of IE, it just blows out the entire width and height of the page. Here is the link. Please advise

Upvotes: 0

Views: 5852

Answers (2)

Jay
Jay

Reputation: 841

I tried this one it work for me.

Add following line in the header tags to force IE to render in the latest document mode.

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

Upvotes: 1

Alex.Me
Alex.Me

Reputation: 616

Had similar problem in ie9 - solved by setting fixed width for div, containing slider in CSS.

.metaslider { width: 720px; }

Hope this helps.

Upvotes: 0

Related Questions