Remove Header from specific page in Twenty Ten

Hello I am using the Twenty Ten theme on a WordPress 4.9.1 I need to remove the header image for just some specific pages, but not the whole site. Is there a custom css code I can use for this? I tried some other I found in searches, but had no luck.

Thank you.

Topic theme-twenty-ten Wordpress

Category Web


Get the id number of the pages from which you want to remove the header images, then you can hide them with CSS. This may not, arguably, be the optimal method,but it'll work:

So, say the page ID #s are 42, 56, and 506.

.page-id-42 #branding img,
.page-id-56 #branding img,
.page-id-506 #branding img {
    display: none;
}

Here's an image file - note that on any page, if you look at the inspector, the page-id-# class will be shown on the body tag, like page-id-445 here:

enter image description here

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.