0

我的网站托管在 Dropbox 上:https ://dl.dropboxusercontent.com/u/833721/gapsummit/london/index.html

“事件”下拉菜单适用于除 /london/index.html 之外的所有页面。此页面上唯一的区别是使用了 SlidesJS。

如果我注释掉 CSS 导入,它会完美运行。

<!--SLIDER CSS CLASES -->
  <link href="../assets/Slides-SlidesJS-3/examples/playing/css/slider.css" rel="stylesheet" />

知道为什么会这样吗?

4

1 回答 1

0

@ the slider style file there is role

.navbar {
overflow: hidden
}

which is the same class of the top header try to force the top header to have overflow of visible by adding the following

.navbar-fixed-top
{
overflow: visible !important;
}
于 2015-01-27T23:03:33.367 回答