The code for your extra.less template could look like this:
Or you use the CSS version in your extra.less template, that's up to you:
CSS:
.node-stats {
dl.pairs.pairs--rows {
&:first-child {
display: none !important;
}
}
}
.node-meta {
dl.pairs.pairs--inline {
&:first-child {
display: none !important;
}
}
}
Or you use the CSS version in your extra.less template, that's up to you:
CSS:
.node-stats dl.pairs.pairs--rows:first-child,
.node-meta dl.pairs.pairs--inline:first-child {
display: none !important;
}