Thanks for clarifying, @chilisky!
There’s a couple of options here.
Firstly, you could simply reduce the amount of space that the existing image takes up with some custom CSS.
To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)
Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:
@media only screen and (max-width: 1600px) {
.site-banner-media, .site-banner .site-banner-thumbnail {
padding-bottom: 20%;
}
.home .content-area, .blog .content-area, .single-format-image.has-post-thumbnail .content-area {
margin-top: 20%;
}
}
You can increase/decrease the value of padding-bottom and margin-top to increase/decrease the amount of space taken up by the header image. Both values need to stay the same in order for the header and content areas to remain aligned nicely together.
You’ll notice, however, that the above option crops the image.
Dyad is programmed to always generate the header image at 1800px wide and 720px high. Changing the amount of space it takes up with custom CSS will therefore crop the generated image.
If you’d like to change the actual size of the image, you can override the parent theme’s programming by adding the following to the functions.php file in your child theme:
function dyad_child_featured() {
??? add_image_size( 'dyad-banner', 1800, 720 );
}
add_action( 'after_setup_theme', 'dyad_child_featured', 11 );
From the above function, switch the value of 720 with the height you’d like your header image to be.
After you have saved your changes, you may need to use the following plugin to regenerate your thumbnails before noticing a change:
https://www.ads-software.com/plugins/regenerate-thumbnails/
Let me know how you get on with those options or if you have any extra questions while walking through them.