0

How to hide navigation block (bottom part of picture - points) for lightSlider, i need only pictures. I didn't see see standart parameter in lightSlider's docs.

Example with nav bar: https://i.stack.imgur.com/x3Ydz.png, i need without it

SamB
  • 1,560
  • 1
  • 13
  • 19
while1pass
  • 340
  • 5
  • 15

2 Answers2

2

lightSlider property pager: false

while1pass
  • 340
  • 5
  • 15
1

You should just be able to add a CSS rule for this. Try this.

.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
  visibility: hidden;
}
Lewis Briffa
  • 557
  • 3
  • 6
  • 15