Viewing 1 replies (of 1 total)
  • Plugin Author Meitar

    (@meitar)

    If all you want to do is not show a given number of rows, you could use an :nth-child() pseudoclass to select the elements.

    For instance, to hide the first five rows:

    .igsv-table tbody tr:nth-child(-n+5) { display:none; }

    To hide everything past the tenth row:

    .igsv-table tbody tr:nth-child(n+10)

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Entries Shown’ is closed to new replies.