0

I apologies if the formatting isn't setup properly, I'm quite new to this website.

The image in the CSS below doesn't seem to be loading on the IE9 browsers and I'm unsure of how to go about fixing this issue. I've tried adding filter: none; and am currently using modenizr to add support to all other functions that were broken in IE9.

CSS

.carousel-inner{
   background-image: url("images/unique/hbbanner.png");
    background-repeat: no-repeat;
    background-position: center;
    height:300px;
  }
user3708761
  • 275
  • 1
  • 6
  • 14

1 Answers1

0

For closure to this question. Twitter Bootstrap is unique already in the sense that it will not render the carousel slide feature in IE 8/9 but IE has its own unfortunate trait to it as well.

IE 9 is configured to show Intranet Sites in compatibility mode, which cannot be altered through an HTML/Meta tag. This causes the issue of not being able to view your photo in the carousel, most likely because the CSS properties you are using are only IE 9 compliant and unsupported in IE 8. More information can be found here.

Community
  • 1
  • 1
BuddhistBeast
  • 2,652
  • 2
  • 21
  • 29