nivo slider - not appearing in internet explorer

2019-08-02 20:17发布

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

3条回答
我只想做你的唯一
2楼-- · 2019-08-02 20:30

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!

查看更多
forever°为你锁心
3楼-- · 2019-08-02 20:46

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">

查看更多
走好不送
4楼-- · 2019-08-02 20:49

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; 

}
查看更多
登录 后发表回答