I have inserted the following CSS to make the gallery thumbnails, beneath a product, not bunch up on desktop… which works very well. However on mobile, the thumbnails still bunch up and do not appear aligned. The website is www.thebrexitbiscuit.co.uk
.single-product .flex-control-nav.flex-control-thumbs li {
float: left;
width: 18.6%;
margin-bottom: 8px;
padding: 3px;
background: transparent;
border: 1px solid #eee;
margin-left: 0;
margin-right: 0.5em;
}
.single-product .flex-control-nav.flex-control-thumbs li:nth-child(5n+5) {
margin-right: 0 !important;
}
Thanks!