2014-01-06 46 views
1

我已经使用滑块和Bootstrap v3模型到我的网站。模型工作正常,但它由滑块重叠。这是我的网站:https://dl.dropboxusercontent.com/u/168659703/project2/index.html。在页脚部分,有一个联系链接。请点击它并查看结果。我怎样才能解决这个问题?我遇到了与YouTube视频相同的问题,我在视频链接的末尾使用?wmode=transparent。我没有找到任何解决方案的滑块。Bootstrap3模型重叠滑块

回答

1

你应该改变下列类的Z-index属性:

.da-dots { 
width: 100%; 
position: absolute; 
text-align: center; 
left: 0px; 
bottom: 20px; 
z-index: 2000; <<-- Here change to less than 1050. 
-moz-user-select: none; 
-webkit-user-select: none; 
} 

z-index财产.da-dots不到你的模态对话框z-index财产等于1050

+0

谢谢。它的工作 – Bir

+0

不客气。我赞成你的问题。所以你现在可以upvote也:)。干杯。 – Khamidulla

0

名为.contact外形包装需要

z索引:1;

0

的Z-index这些.da-dots是2000

将它设置为1000以下的东西,你应该没问题。

+0

谢谢。它正在工作 – Bir