I am currently using the Sunrise Theme from s5themes.com and I have a question regarding the header image on individual pages. It seems that all pages are displaying the same header image as the homepage, which is not what I want.
Attached below is a screenshot of the homepage displaying the header image:
And here is another screenshot of a different page (About Us) showing the same header image but appears zoomed-in:
After inspecting the code, I found that the Styles.css file is responsible for handling the header image:
CSS
.header-wrapper {
background: #333;
background-image: url(img/wood-only.png);
background-attachment: fixed;
background-size: cover;
min-height: 200px;
I attempted to modify the code above by changing the background-size property to 'auto', however, it also impacted the homepage's header image. Since I'm not familiar with WordPress structure, I'm unsure about how to proceed.