Site logo

Archived topic

Displaying also the updated date on a posts

1 reply · Started by Timo on April 29, 2021

Viewing posts 1–2 of 2

Hi!

My posts display the published date. Next to that, I also want to display the updated date.

How can I do that?

Regards,
Timo

Hi there,

Can you explain a bit more on how you want it to behave?

Do you want to display BOTH the published date and the updated date at the same time?

If that's the case, we should be able to do it with plain CSS.

Try adding this CSS:

.posted-on {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.posted-on time.updated {
    display: block;
    margin-left: 10px;
}

It will display like this - https://share.getcloudapp.com/v1ubnoee

This archived topic is closed to new replies.