Foundation 5 orbit bullets

865 views Asked by At

I would like to move bullet navigation on the slider,so it would be somewhere in the middle.
But when i do this and click on the other slide the bullets disappear.
Any ideas how to fix this?

1

There are 1 answers

0
Cristialt On

You need to override some of the orbit bullets CSS rules, like:

.orbit-bullets {
  position: absolute; // instaed of relative
  top: 100px; // where you want it 
  z-index: 1000; // > 10 will probably work
}