otuatail Posted November 30, 2007 Share Posted November 30, 2007 Can anyone shead some light on this. I have tested my site on all popular browsers. It works with IE7 but I now find it fails in IE6. The div tag on the left (the menu) is wider in IE6 and runs into the main test. Any sugestions that will keep it working in Firefox / Netscape / Opera and Safari please. URL = http://www.des-otoole.co.uk/cms/ Desmond http://www.des-otoole.co.uk/cms/ Quote Link to comment https://forums.phpfreaks.com/topic/79529-problems-with-ie6/ Share on other sites More sharing options...
bronzemonkey Posted November 30, 2007 Share Posted November 30, 2007 Looking at this part of your CSS I can see that the list is wider than #menu. You will want to fix this discrepancy. #menu { position:absolute; left:0px; top:106px; [b] width:80px;[/b] height:350px; padding-top:0px; background-image: url(../images/side5.jpg); } #tabnav { margin-top: 0px; top:0px; height: 200px; [b] width: 150px;[/b] } You've also got a bunch of parsing errors in the css associated with elements that make up your menu. Whenever you have a problem you must check your html and css in a validator to check for errors first - http://www.w3.org/QA/Tools/. You will see what the errors are when you check your code. Be aware that css comments take this form: /* this is commented out */ Quote Link to comment https://forums.phpfreaks.com/topic/79529-problems-with-ie6/#findComment-402781 Share on other sites More sharing options...
otuatail Posted November 30, 2007 Author Share Posted November 30, 2007 Thanks for that. Strange that IE7 did not pick this up. Desmond. Quote Link to comment https://forums.phpfreaks.com/topic/79529-problems-with-ie6/#findComment-402883 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.