Hi, if I have a gallery with 8 pictures, is there a way to only preview 3 on the page, but then when they click on one of the pictures all 8 are in the slideshow?
Hey!
Try adding this code to the Quick CSS:
.avia-gallery-thumb a{
display: none !important;
}
.avia-gallery-thumb a:nth-child(1), .avia-gallery-thumb a:nth-child(2), .avia-gallery-thumb a:nth-child(3){
display: block !important;
}
Cheers!
Josue