To show only even listview items:
.mx-listview ul li:nth-child(odd) { display: none; }
To show only odd listview items:
.mx-listview ul li:nth-child(even) { display: none; }