Css hide First itens from ul li list
/*:nth-child(-n+4)*/
.dashboard-widget.big-counter ul.list-inline li:nth-child(2), /this element's 2nd child/
.dashboard-widget.big-counter ul.list-inline li:nth-child(3), /this element's 3rd child/
.dashboard-widget.big-counter ul.list-inline li:nth-child(4) { /this element's 4th child/
display: none !important;
}