Uneven mesh with cms

Hello, how can I make an uneven cms grid? Watch the video: https://www.loom.com/share/14fe312b11274ab29368431a03dcb292

@Aleksey I made an example:

https://labmr.webflow.io/collectionlist

You have to use nth-child-selector.

OMG !! Thank you! could you leave a read-only link? )

Unfortunately I don’t have a pro plan, so I can’t share the project. But I can share the code:

<style>
.collection-item:nth-child(even) { 
			margin-top:200px; }
</style>
1 Like

Hello, I’m sorry to bother you again, is it possible to disable this code for the mobile version of the site?

just wrap this css in a media query : CSS3 Media Queries - Examples

1 Like