Remove Author & "by"

Hello,

I’ve found other support forums on how to remove the author. Which I have with:

.date, .author {
display: none;
}

In the additional CSS.

I also found a way to remove the date and name with:

.entry-meta {
display: none !important;
}

But I want the author in there. However using the first CSS leaves the date followed by a “by” in and then a blank space where the author used to be. I cant figure out if it’s removable with CSS on it’s own or not since it’s inside of the entry-mata

Hi @kkozicki,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

.entry-meta {
    font-size: 0;
}

.entry-meta .posted-on {
    font-size: 14px;
}

.entry-meta .author {
   display: none;
}

Best Regards,
Movin