nivo slider - not appearing in internet explorer

谁说我不能喝 提交于 2020-01-24 22:53:11

问题


front end design is my weak spot so im a bit lost.

The nivo slider for this site(www.myfriendshotel.com) im working on is working fine in firefox but not in ie. The only reason on google why it wouldnt work is the styling not being closed properly but I have checked all of that.

any ideas ?

Thanks, Alex


回答1:


IE was probably switching to compatibility mode ..

I had that problem with Nivo...

to disable compatibilty mode :

<meta http-equiv="X-UA-Compatible" content="IE=edge">




回答2:


Just to close this off.

The solution was too clean all the html as unnecessary tags were lingering and also to cleanup all the js and then all was well again!




回答3:


change nivo slider CSS with:

.nivoSlider a.nivo-imageLink {

      position:absolute;
      top:0px;
      left:0px;
      width:100%;
      height:100%;
      border:0;
      padding:0;
      margin:0;
      z-index:6000;
      display:none;
      /*patch IE10*/
      background:white;
      filter: alpha(opacity=0);
      opacity: 0; 

}


来源:https://stackoverflow.com/questions/3660917/nivo-slider-not-appearing-in-internet-explorer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!