Can I make tags invisible?

I’d prefer not to see the tags of items in my lists. They distract me, and I only want to use tags to find tagged items.

Is it possible to make the tags invisible? Maybe by giving them no colour?

Thanks for any suggestion.

1 Like

You can easily hide them like so with custom CSS:

.node-tag {
    display: none !important;
}
4 Likes

Thanks, Erica, the code is much appreciated.