Jump to content

Problems with IE6


otuatail

Recommended Posts

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/

Link to comment
https://forums.phpfreaks.com/topic/79529-problems-with-ie6/
Share on other sites

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 */

Link to comment
https://forums.phpfreaks.com/topic/79529-problems-with-ie6/#findComment-402781
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.