Remove page title from posts/pages but keep on homepage

Hello I was wondering if there was a way to display the Title of posts and pages on the Homepage where it lists the most current posts but remove them from the individual posts and pages. I used the code below but it removes them from everywhere.

.entry-title a {
display: none;

Hi @mbutterfly5520,

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

You can remove it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

body.single-post #main header.entry-header,
body.page #main header.entry-header {
  display: none;
}

Best Regards,
Movin