How to remove "posted on date and author" from posts

Hello, i am having issues finding the code in the theme that adds the “posted on date and author” for each post.
Id like to remove this is possible. Is there any CSS i can use to do this or could you tell me the directory of where the code is so i can delete it?
Any help would be greatly appreciated.
Thanks

Hi @tipper,

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

You can hide them 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-header .entry-meta {
    display: none;
}

Best Regards,
Movin