How to show created date (or modified, etc)

How can I show, copy, or export the time stamps for when I created or edited an item?

Sometimes I want to see when I created or modified an item. The hover functionality is useful, since I wouldn’t want to see it all the time. However, sometimes it would be helpful to have this data visible or transferable.

Is there a way to do this, either in the main app or with some CSS, or something else?
Thanks!

2 Likes

Do you know any basic CSS?

This is the hacky CSS that I got to make it show up (it’s not pretty):

.node-line {
position: relative;
}

.node-line:after {
content: attr(title);
position: absolute;
right: 0;
font-size: 12px;
width: 200px;
line-height: 16px;
}

Paste it into the custom CSS field and it should work (again, warning it will look messy).