Webflow Designer Support ❺
Improve the Design-Time Experience when working with SA5.
SA5's Design-Time Support
Hide an element at design-time;
<style>
.modal1 {
display: none
}
</style>Reduce a collection list to just a few items of display;
<style>
/* By default, hide all .w-dyn-item elements inside #my-list */
#my-list .w-dyn-item {
display: none;
}
/* Display the first three .w-dyn-item elements inside #my-list */
#my-list .w-dyn-item:nth-child(1),
#my-list .w-dyn-item:nth-child(2),
#my-list .w-dyn-item:nth-child(3) {
display: block; /* or display: flex, inline-block, etc., depending on your layout */
}
</style>Last updated