0

我正在使用 ResponsiveSlides js 创建图像滑块。但是,是否可以将底部按钮选项卡放置在图像内?我的测试链接: http ://websolutions.my/slider-test/ 我尝试编辑 css 但不能这样做

4

2 回答 2

0

在您的 css 中添加以下代码

#slideshow ul.centered-btns_tabs{
     position: relative;
     margin-top: -10px;
     margin-bottom: -10px;
     top: -45px;
     z-index: 999;
}

中心对齐的点

于 2015-06-02T06:03:05.940 回答
0

将以下属性添加到 UL

#slideshow ul {
  font-size: 14px;
  margin-top: -50px;
  position: relative;
  z-index: 99;
  margin-bottom: 40px;
}
于 2015-06-02T06:06:16.553 回答