ResponsiveSlides button tabs position

268 Views Asked by At

I'm using ResponsiveSlides js to create image sliders. However, is that possible to position the bottom button tabs to be within the image? my test link: http://websolutions.my/slider-test/ I tried editing the css but cant able to do so

2

There are 2 best solutions below

0
On BEST ANSWER

Add below property to the UL

#slideshow ul {
  font-size: 14px;
  margin-top: -50px;
  position: relative;
  z-index: 99;
  margin-bottom: 40px;
}
1
On

Add following code in your css

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

center aligned dots