What I mean is, skip the first item and display the second.
Here’s the solution in CSS:
Give each column a CSS class, .hungryfeed-left, .hungryfeed-middle, .hungryfeed-right, and bump the max-items for the feed short code to “3”.
Here’s all there is to the CSS:
.hungryfeed_item {display: none;}
.hungryfeed-left .hungryfeed_item:nth-child(1),
.hungryfeed-middle .hungryfeed_item:nth-child(2),
.hungryfeed-right .hungryfeed_item:nth-child(3) {display:block;}
The first line turns them all off. Then the next 3 lines turn on the 1st, 2nd, and 3rd item in their respective columns.