Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple html/css based drop down menu.

It works fine in Chrome, however it doesn't work at all in IE 8.

Does anyone have a fix for this?

The link to the site is: http://cecvp.net.s41035.gridserver.com/

Thanks for anyone who helps me out!

share|improve this question
Anyone have an idea? Really need help with this. – user1382998 May 8 '12 at 20:40
1  
Welcome to Stack Overflow. You'll likely get a better response if you create a Short, Self Contained, Correct Example, including the relevant code in your question and/or creating a fiddle rather than just pointing us at your website. – steveax May 8 '12 at 21:22

2 Answers

Your CSS file is likely not properly linking to the page because you closed the link tags with a \ instead of a /.

Your code:

<link rel="stylesheet" href="/wp-content/plugins/noshop/noshop.css" \>

Should be:

<link rel="stylesheet" href="/wp-content/plugins/noshop/noshop.css" />

Also, fix your numerous HTML validation errors for the best chances of consistent cross-browser rendering of the page... Explorer is especially fussy about this.

http://validator.w3.org/

And, your JavaScript file, menuscript.js is giving a 404 error.

<script type="text/javascript" src="/html/wp-content/themes/default/menuscript.js"></script>

http://cecvp.net.s41035.gridserver.com/html/wp-content/themes/default/menuscript.js

EDIT:

You can see your layout is not working fine in Safari either...

layout

It's critical that HTML validation issues are resolved before trying to solve individual browser issues. Most of the time, valid HTML works very well cross-browser.

share|improve this answer
Thanks for your input! That style sheet is related to a plugin (the site is Wordpress based) which I am not using. I fixed that error, however it unfortunately does not resolve my original issue. This is a simple CSS/HTML list based menu I have, which works fine in FF and Chrome - I can't imagine the problem being major, I just can't seem to see it. – user1382998 May 10 '12 at 17:56
@user1382998, you still need to VALIDATE the HTML... some of those errors are significant enough to cause major problems with IE... you have an unclosed ul tag for example. BTW, your layout is also not working in Safari. – Sparky May 10 '12 at 17:59
I have now removed the JavaScript file you mentioned from the server - it was not needed. I have also resolved the unclosed ul tag. Once again, I really appreciate the assistance you have been providing me. I suppose my best bet is to address the errors in the validation. – user1382998 May 10 '12 at 18:07
@user1382998, Yes I agree, there are still errors related to open tags, missing tags, etc. – Sparky May 10 '12 at 18:11

For some reason your sylesheet doesn't seem to be properly linked in internet explorer. I couldn't quite figure out what you had done but the css code that is needed to render your menu bar is as follows:

ul {
    font-family: Arial,Verdana;
    font-size: 16px;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
ul li {
    display: block;
    float: left;
    position: relative;
}
li ul {
    display: none;
}
ul li a {
    background: none repeat scroll 0 0 #D0D0D0;
    border-top: 1px solid #FFFFFF;
    color: #FFFFFF;
    display: block;
    margin-left: 1px;
    padding: 5px 50px 5px 10px;
    text-decoration: none;
    white-space: nowrap;
}
ul li a:hover {
    background: none repeat scroll 0 0 #B8B8B8;
}
li:hover ul {
    display: block;
    position: absolute;
}
li:hover li {
    float: none;
    font-size: 12px;
}
li:hover a {
    background: none repeat scroll 0 0 #B8B8B8;
}
li:hover li a:hover {
    background: none repeat scroll 0 0 #95A9B1;
}
a:hover {
    text-decoration: none;
}
#nav li ul a {
    float: left;
    width: 12em;
}
#nav ul ul {
    top: auto;
}
#nav li ul ul {
    left: 12em;
    margin: 0 0 0 10px;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul {
    display: none;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul {
    display: block;
}

Copy and paste that into a style sheet that is linked, such as style.css, and you should be all set. I did that and got it to work.

share|improve this answer
Thanks for your input - really appreciate it! I tried what you recommended but it unfortunately did not work for me. I copied what you provided and linked it - but it doesn't seem to render in any browser now. – user1382998 May 10 '12 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.