Superfish Menu disappearing in IE9

The website I’m working on is www.shandon.com.au .
It looks pretty well on every browser except IE9, where the navigation menu disappears (it uses Superfish JS).

I’m running a Mac so I can test it only on IETester in VMWare, and if I don’t move the mouse everything looks fine, whenever I hover the webiste window, it disappears and the search box move down.

Read More

What should fix this? Any help will be appreciated! Thanks!

Related posts

Leave a Reply

1 comment

  1. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
    

    That’s one of the problems, change this to

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

    Then delete this line from the head:

    <!--[if IE 9 ]>    <html class="ie ie9 no-js" dir="ltr" lang="en-US" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
    

    I don’t think you need IE9 specific detection, it will render everything correctly in your website anyway.