Hi Thomas
Once enabled the
Header Full Screen option extends the header area to the full height of the browser viewport. The image
background-size property is set to
cover which means it will be set to the min size to fill the header area. If you always wish to display the entire height of the image you can sue the following custom CSS. Note that this may cause blank space horizontally.
#container_header {
background-size: auto 100% !important;
}
If you wish to set a specific height to the header area you can add the following to the Custom CSS field of your template settings...
Edit to taste
#container_header {
max-height: 600px;
}
Ciaran