Css – Background image not displaying on old IE versions

cssinternet explorerinternet-explorer-6internet-explorer-7internet-explorer-8

I m really having a hard time displaying a background image on old IE versions (6-8).

Here is my code:

#top
{
background-image: url(http://some-domain.com/myimage.jpg) no-repeat;
background-color:#830703;
border-bottom: 1px solid #303130;
height: 128px;
width:100%;
overflow: hidden;
zoom:1;
}

I have tried it to write it in many different ways but it didn't work.

Does anyone have an idea?

Best Answer

Use the below.

#top
{
    background: url(http://some-domain.com/myimage.jpg) no-repeat #830703;
    border-bottom: 1px solid #303130;
    height: 128px;
    width:100%;
    overflow: hidden;
    zoom:1;
}

Hope this helps.