Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.