Remove the logo, title and tagline when user clicked on a blog post

I want to show the logo,title and tagline in the home page section. Not in the blog content when the user click a blog post.

I just want to show the logo,title and tagline only in the home page.

Hi @vancabrera2,

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 -> Activello Options -> Other -> Custom CSS

body.home div#logo {
    display: block;
}

div#logo {
    display: none;
}

Best Regards,
Movin