Comments Rafal started the conversationJanuary 10, 2018 at 10:35pmHi.Is there a way to present on the webpage the galery of lets say 20 pictures but limit number of thumbnails to 3? The remaining pictures would only be visible once you click through pictures.Thanks. Rafal 240Elena repliedJanuary 11, 2018 at 8:47amHi Rafal,you can do that adding a few CSS to Customize -> Additional CSS. Go there and paste the following code:.gallery .gallery-item:nth-child(n+4) { display: none; }Cheers, P. Sign in to reply ...
Hi.
Is there a way to present on the webpage the galery of lets say 20 pictures but limit number of thumbnails to 3? The remaining pictures would only be visible once you click through pictures.
Thanks. Rafal
Hi Rafal,
you can do that adding a few CSS to Customize -> Additional CSS. Go there and paste the following code:
.gallery .gallery-item:nth-child(n+4) { display: none; }
Cheers, P.