Remove logo on top of one specific page

Hi,

I’d like to remove the logo on one specific page of my blog.

But the code is in the header, and if I remove or comment the code, it will be on all pages right?

Maybe a CSS solution with display:none ? But if so, how to target the logo on one specific page?

Or maybe a new template?

Thank.

Hi @skaz,

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.page-id-733 #logo img {
    display: none;
}

Please change the page ID 733 in the above CSS code to the page ID where you want to hide the logo.

Best Regards,
Movin

Thank, it’s working.

You are most welcome here :slight_smile: