Remove author by line

Hi,

I want to remove “posted by” and the whole “by” + author information under the title of every post. I just want the date to appear. Can someone help me with this?

Thanks in advance

Hi there
Hope you are having a good day and thank you for your question :slight_smile:
I’m it’s not exactly possible to leave the date alone without customization.
However, you can this custom CSS to remove this information.
.entry-meta{
display: none;
}
Thanks!
Colorlib Support Team

What about just removing “by + author” and keeping “posted + date”?

Hey there

try this code please:

span.posted-on a {
visibility: visible;
}
span.posted-on {
visibility: hidden;
}
span.author.vcard {
display: none;
}
.entry-meta {
visibility: hidden;
}

Thanks so much! Exactly what I wanted :slight_smile:

1 small detail – now the date doesn’t appear centered. Is there a way to fix that? Please see screenshot.

Thanks again!

Hello,

Can you please provide a link to the page?