Author and Date under Post Title

Hello,
I am noticing that when I write a post that the date, author, email address, and folder under which I placed the post all show up underneath the post title. I only want the date to show. How do I get rid of the other information?

*I’ve attached an image of the information showing up under the post title that I want to remove from each post.

Thank you.

Hi @rotosquad,

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 the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

.entry-meta * {
    display: none;
}
.entry-meta span.posted-on,
.entry-meta span.posted-on * {
    display: inline-block;
}

Best Regards,
Movin