sacredpath
(@sacredpath)
Automattic Happiness Engineer
Hi, yes you can. In the opening body html tag, which you can find by viewing the source code of the page, or using the web inspector built into your browser, you will find a unique page id CSS class. You can use that in combination with the custom header class to hide the image on that particular page. For example, for your Kurse page, it would be this.
.page-id-133 .custom-header {
display: none;
}
Hi there,
Thanks for the answer.
Can I also write this in the custom CSS section?
sacredpath
(@sacredpath)
Automattic Happiness Engineer
Yes, that is where you would place the CSS I gave above.