How can I hide dates?

I’m using this code to hide all tags… Can something similar be done to hide all dates?

.node-tag[href="#"] { display:none; }
.ref .node-tag[href="#"] { display:block; }

This works for me:

.node-time {display:none;}

2 Likes

Thanks! I tried .node-date but it wasn’t working. It didn’t occur to me to use ‘time’. :smiley:

2 Likes

The Devtools inspection tool should help you immensely! You’ll be able to find hundreds of things you can customize :slight_smile:

1 Like