方向箭头在我的弹出窗口

时间:2017-09-08 15:54:38

标签: html css wordpress posts

你知道吗,为什么我的帖子滑块上的方向箭头显示在我在这个网站上的弹出广告?

http://skkelti.cz/

enter image description here

1 个答案:

答案 0 :(得分:0)

箭头的两个锚标签的z-index值为999,大于弹出窗口。您可以增加弹出窗口z-index或缩小箭头z-index。

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;   //Need to change
}