Getting rid of dates on posts

Hi there,
I have used the following css to remove the date posts on recent posts, but it does not work. Can you help.

span.x-recent-posts-date, .single-post .p-meta span:nth-of-type(2) {
display: none;
}

The page in question is https://www.bowfiddle.org/?page_id=340

Thanks in advance

Hi Sarah,

Thanks for writing in.

Sure, please add this CSS instead of that one

.x-recent-posts-date {
display: none;
}

You may also check related tutorial about CSS with help of developer tool https://developers.google.com/web/tools/chrome-devtools/beginners/css. Just in case you wish to find out how those CSS and selectors are working :slight_smile:

Thanks!

Hi, thanks for that. Unfortunately it didn’t work. Any advice?

Hello Sarah,

Please update the css code and use this instead:

.site .x-recent-posts .x-recent-posts-date,
.x-site .x-recent-posts .x-recent-posts-date {
  display: none;
}

We would loved to know if this has work for you. Thank you.

Yes that worked. Thank you so much.

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.