Remove Header Image From Some Pages

I’m really new to WordPress and I’m trying to figure out how to remove the header image from all pages expect the home page I have set up. Is this possible?

This code will remove custom header image from all pages except your homepage. You can add this code to Appearance - Theme Options - Other - Custom CSS.

.header-image {
	display: none;
}
.home .header-image {
	display: block;
}

Let me know if this works. If not please let me know your website URL and I will try to help you from there as there are many ways how you can setup this theme and I am not sure what are your current settings.