Don't show logo on single posts

Hi colorlib community,
I have defined a logo-image for my homepage, but I don’t want it to be shown on every single post page. So it is supposed to be there when you click on “Home” but it should disappear when you click on my newest post, for example. I tried to add “#page. logo { display: none; }” in the custom CSS but that did not work. Hope somebody can help me out :slight_smile:

www.sarahmar.com

Best regards,
sarahmar

Hi Sarahmar,

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

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

Admin Area -> Appearance -> Customize -> Additional CSS

body.single-post #logo {
    display: none;
}

Best Regards,
Movin