Different image header for each different page/post?

Is possible to have a different image header for each different page/post?

Hello,

Unfortunately, this is not possible at the current moment.

Kind regards

Hello @ColorlibSupport,

Is it possible to deactivate the header images on the single pages?
Thank you

Hello @rirock,

Just use this CSS code, it should do the trick:

.page .bottom-header{
display: none;
}

Regards

Hello @colorlibsupport,

Thank you, it does. But it has also removed the Jumbotron header image. Is it possible to remove only the header images from the single pages but remain on the startpage, the jumbotron header picture?
Thank you again for your help!

Best regards

Hello @rirock,

Additionally to the above code try using this:

.home .bottom-header{
display: block !important;
}

Regards

THANK YOU!