Delete author name from carrousel

Hi there!

I want to delete the author name in my posts but also in the postcarrousel on the homepage.
I used this code in custom CSS on Dazzling theme, which works to delete the author name in the posts.

.author {
display: none;
}

Is there another method so it also deletes the name in the carrousel on the homepage?

The link to the website is https://www.mooivoorburg.nl/

Thanks in advance!

Hey there

You may use this css code to fix it:

.entry-meta span.byline {
display: none !important;
}
.wppsac-post-date > span {
display: none;
}

Thank you, this is working!

I replaced

.author {
display: none;
}

With your code. Very happy! Thanks a lot!

Have a good day :slight_smile:

Regards