Hiding elements of the /about page with CSS?

Hi everyone,

Is there a way to hide these individual elements of the new /about page using some CSS?

2 Likes

Hello :wave:

This will hide the admins, moderators and creation date stats.

.about__stats-item {
  &.admins,
  &.moderators,
  &.site-creation-date {
    display: none;
  }
}
3 Likes

Beautiful!

Thank you so much @Don :clap:t2: :bowing_man:t2:

2 Likes