• I am building a site and have used WordPress to generate my navigation based on the Suckerfish dropdowns:

    <div id="homeNav"><ul id="suckerfishnav"><?php wp_list_pages('title_li='); ?></ul></div>

    The site is http://www.maryfranwiley.com/novo you can get the css there (it is its own stylesheet called navbar)

    The dropdowns work in Firefox, Safari and Opera…but not IE, any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    There is a javascript that needs to execute for the dropdowns to work correctly in IE.

    The line of code in your header.php file is
    <SCRIPT src=”/scripts/navbar.js” type=text/javascript></SCRIPT>
    The file does not exist in that location thus the javascript is not executing thus the dropdowns are not working.

    First make sure that file exists somewhere on your server. Then make change the filepath in header.php to its actual location.

    That may not totally resolve the problem but its a necessary first step.

    Thread Starter mifa

    (@mifa)

    The script is there now (not sure how I missed it in the upload), it is supposed just be a fix for IE6, but the navigation is still not working… any other ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘my dropdowns are broken in IE7’ is closed to new replies.