Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lisanti

    (@lisanti)

    What I mean is, skip the first item and display the second.

    Thread Starter lisanti

    (@lisanti)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display second item in feed?’ is closed to new replies.