Question

I have 8 html div's. I have set background of all divs with different image, All are displaying properly except 2 div's in IE8 and in default android browser. If i set any other image for these two div's background, they will also work. But if rename those two images and set them, they wont work. I am confused. Below is the code

     #tabs-8{
        background: url(../images/banner/290/open-house.jpg);
      }
      #tabs-6 {
        background: url(../images/banner/290/our-trainers.jpg);
      }

Is there any issue with those images Or Is this the issue in IE8.

Was it helpful?

Solution 2

I found this problem :) Your images doesn't load on IE8. If you enter this link http://115.115.80.139/images/banner/290/our-trainers.jpg on address bar in IE8 you don't see image. I think that problem on server or image. Try resave image with another name or upload it on other hosting

OTHER TIPS

Using shorthand property for background might cause the problem. So just use background-image: url('path'); if you don't specify any other values.

If you use shorthand property, use like this at least:

background: url('path') no-repeat;

Yes You need to call the image using background-image: url Property.

<div style="background-image: url(../images/test-background.gif); height: 200px; width: 400px; border: 1px solid black;">Example of a DIV element with a background image:</div>

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top