How do I move the product’s gallery thumbnails right below the main image and make the main image larger?
https://crochetbykarina.com/product/boobie-cozy/
I added this code to my Global CSS
@media(min-width: 980px){
.flex-viewport {
margin-left: 100px;
}
.flex-control-nav.flex-control-thumbs {
right: auto;
left: 0;
width: 100px;
height: 100%;
padding: 0;
}
.flex-control-nav.flex-control-thumbs li {
float: none;
display: block;
background-color: transparent;
margin: 5px auto !important;
border: none;
box-shadow: none;
}
.flex-control-nav.flex-control-thumbs img {
height: auto !important;
max-width: 50px;
}
}

