Can anyone else figure this out. I reconstructed my menu to be horizontal. Somehow I lost my IE fix along the way. I have tried to fix my CSS, HTML, and even the fix, with no luck. Any help would be appreciated. Thanks.
page:
<!-- w --><a class="postlink" href="http://www.freewebs.com/kentuckyweightlifting/">www.freewebs.com/kentuckyweightlifting/</a><!-- w -->
css:
<!-- w --><a class="postlink" href="http://www.freewebs.com/kentuckyweightlifting/styles.cssWhat">www.freewebs.com/kentuckyweightlifting/styles.cssWhat</a><!-- w --> the hell is going on with that DTD?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Just pick one and stick with it. Just glancing at your code I'd ditch both of those mashed together DTD's and go for an HTML 4.01 Strict.
I'm guessing that your menu isn't working in IE because you don't have any JavaScript to tell the menus when to show and when not to.
While I'm at it, this script tag:
<script language="JavaScript" type="text/javascript"></script>
Needs to be fixed:
<script type="text/javascript"><!--
//There's nothing in here!!!
//--></script>
Now onto your styles:
<style type="text/css" media="all"> @import "styles.css";</style>
<link href=http://www.webdeveloper.com/forum/archive/index.php/"/styles.css" rel="stylesheet" type="text/css">
One question, why? You've imported your style sheet, now why not just leave it at that?
Edit: Your e-mail link is buggered, it should look like this:
<a href=http://www.webdeveloper.com/forum/archive/index.php/"mailto:[email protected]?subject=Kentucky Weightlifting" title="Email about a Kentucky Weightlifting or webpage-related issue">email me</a>Hey thanks for the help. Unfortunately I still can't get the menu to work. I don't quite understand how java could be the problem. This is crazy, I had it working in my vertical menu.This, behavior: url('CSSNavIEHover.htc');, makes the menu work in IE. Check it out.I've already got that behavior in my css. It's under the #nav linevermind, I fixed it. I simply had to use a different fix.
page:
<!-- w --><a class="postlink" href="http://www.freewebs.com/kentuckyweightlifting/">www.freewebs.com/kentuckyweightlifting/</a><!-- w -->
css:
<!-- w --><a class="postlink" href="http://www.freewebs.com/kentuckyweightlifting/styles.cssWhat">www.freewebs.com/kentuckyweightlifting/styles.cssWhat</a><!-- w --> the hell is going on with that DTD?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Just pick one and stick with it. Just glancing at your code I'd ditch both of those mashed together DTD's and go for an HTML 4.01 Strict.
I'm guessing that your menu isn't working in IE because you don't have any JavaScript to tell the menus when to show and when not to.
While I'm at it, this script tag:
<script language="JavaScript" type="text/javascript"></script>
Needs to be fixed:
<script type="text/javascript"><!--
//There's nothing in here!!!
//--></script>
Now onto your styles:
<style type="text/css" media="all"> @import "styles.css";</style>
<link href=http://www.webdeveloper.com/forum/archive/index.php/"/styles.css" rel="stylesheet" type="text/css">
One question, why? You've imported your style sheet, now why not just leave it at that?
Edit: Your e-mail link is buggered, it should look like this:
<a href=http://www.webdeveloper.com/forum/archive/index.php/"mailto:[email protected]?subject=Kentucky Weightlifting" title="Email about a Kentucky Weightlifting or webpage-related issue">email me</a>Hey thanks for the help. Unfortunately I still can't get the menu to work. I don't quite understand how java could be the problem. This is crazy, I had it working in my vertical menu.This, behavior: url('CSSNavIEHover.htc');, makes the menu work in IE. Check it out.I've already got that behavior in my css. It's under the #nav linevermind, I fixed it. I simply had to use a different fix.