0
[Solved]Problem dealing with slides
hey guys, could we get some help on one thread? you will find the lesson in the first comment of my code (leaning from the lesson) and others also need some answers regarding the lesson ! thank you in advance ! https://code.sololearn.com/Wn9lZKT6B6Yt/?ref=app
2 Antworten
+ 8
You need to add the indicators yourself, This feature is not automatically generated.
Currently there are only two. (0 & 1)
Here is the code for adding two more
<ol class="carousel-indicators black">
<li data-target="#logoCarousel" data-slide-to="0" class="active"></li>
<li data-target="#logoCarousel" data-slide-to="1"></li>
<li data-target="#logoCarousel" data-slide-to="2"></li>
<li data-target="#logoCarousel" data-slide-to="3"></li>
</ol>
+ 1
thank you very much for your help!