• I have a wordpress site with an Internet Explore 6 BUG and I just can’t solve it…If you look at the site in Firefox or IE7 you will understand how it should appear. The menu goes crazy and stacks the child pages all in one place in IE6!

    If someone wouldn’t mind taking a peek and possibly provide some hits, I would greatly appreciate it.

    https://butteamericafilm.org

Viewing 3 replies - 1 through 3 (of 3 total)
  • You have a misplaced javascript after your closing </html> tag. Move this to before your </body> tag. You also have a blank line at the top of your code, which supposedly can make IE 6 quirky.

    IE 6 can be a real pest to design for. I don’t have it to check your site with, but for possible solutions (if fixing the code errors doesn’t work), try a Google search for: ie box model

    Thread Starter rstar

    (@rstar)

    Would have anything to do with a missing tag in the stylesheet? Something maybe with the #foxmenucontainer…not sure.

    You do have an error (a misplaced 5) in your style.css. Replace this:

    #header #logo {
      float: left;
      width: 921px;
      margin:0;5
      padding: 0;
    }

    With this:

    #header #logo {
      float: left;
      width: 921px;
      margin:0;
      padding: 0;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘IE6 menu bug’ is closed to new replies.