Thank you
Presuming you want the slideshow height to resize with the browser width, try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
@media only screen and (max-width: 959px) {
#container_header .wrapper960 {
min-height: auto !important;
}
#header {
height: auto !important;
padding-bottom: 50%;
}}
Ciaran