I copy all the codes into my html, css and javascript file but it is still not sliding why?
Den () - 7 years ago - Reply 0
Can this 3 slide carousel slide one unit each time with an auto slide feature in addition to the manual?
John () - 10 years ago - Reply 0
Really cool.. but the biggest problem i c with this version and the other similar version is that the thumbs inside the slider need to be reduced in # of viewable thumbs ... say from 3 to 2 and then to 1 as the screen reduces size. the current function simply lowers one thumb under the next and you end up with 3 thumbs vertically aligned on top of each other. This is rather awkward and consumes a lot of vertical space. Would it be possible to get a revised version? Thanks for the post, its a great start.
anthony () - 10 years ago - Reply 0
you can change the #media to .media and then add hidden-xs to the css div and copy and paste it change hidden-xs to visible-xs hidden-md hidden-sm hidden-lg and make it so it's
<div class="col-xs-12 visible-xs hidden-sm hidden-md hidden-lg">
<div class="carousel slide logo-slider media">
<div class="carousel-inner">
<div class="item active">
<div class="row">
<div class="col-md-12">
<img alt="" src="./img/image.png">
</div>
</div>
</div>
<div class="item active">
<div class="row">
<div class="col-md-12">
<img alt="" src="./img/image.png">
</div>
</div>
</div>
</div>
</div>
</div>
Michael Dance () - 8 years ago - Reply 0