I am trying to add a LightSlider image carousel with thumbnails to my Big Cartel website (to display product images) but I can't get it to work (even with example images)
I have tested it on Codepen & JSFiddle - works fine there, but on my bigcartel.com store, The photos show up stacked. No thumbnail gallery.
My Code (working): Codepen
width:500px;
}
.ls-slider ul {
list-style: none outside none;
padding-left: 0;
margin-bottom:0;
}
.ls-slider li {
display: block;
float: left;
margin-right: 6px;
cursor:pointer;
}
.ls-slider li img {
display: block;
height: auto;
max-width: 100%;
}```