Style only latest masonry item

Using the masonry layout for the blog page, how can I style only the latest masonry item. I want to denote the most recent item as different than the rest let’s say with a different color border.

Hi @ancker,

Thanks for writing in.

You cannot select the first post always however you can use post id to select blog post in masonry that you want to add border. Add this code in your custom CSS.

For example,

.post-1135 .x-iso-container.cols-3>.hentry{
border:1px solid #000;
} 

Hope it helps.

Let us know how it goes.

Thanks.