Limit Multi image field items display - toggle not showing

I want to limit the number of images shown on the right side (small images) of the product gallery to 4 and in Lightbox every image should show. I cannot find the “limit items” toggle and have no idea how to achieve this.

Anybody around, who can help?

Thanks a lot
Gerd


Here is my site Read-Only: [LINK
(how to share your site Read-Only link)](https://preview.webflow.com/preview/subbase-neuss?utm_medium=preview_link&utm_source=designer&utm_content=subbase-neuss&preview=f870fa0ae26dd28d52a5ff3f2ba816a2&pageId=65c605b5319ad2e9ccb8ab0e&itemId=65c605b5319ad2e9ccb8ac5b&locale=de-DE&workflow=preview)

Add an embed on the page and paste this code inside:

<style>
.product-gallery_item {
    display: none;
}

.product-gallery_item:nth-child(-n+4) {
    display: block;
}
</style>
1 Like

You’re legend. It works as I wanted. Thanks a lot indeed Marko!