Ah! media screen! So that code only applies above certain screen sizes and leave the image alone for smaller ones, right?
// looks like it's falling apart around 930px adjust as you need...
@media only screen and (min-width: 925px) {
.banner-thumbnail-wrapper #thumbnail img {
max-width: 1400px !important;
width: 100vw !important;
height: auto !important;
margin: 0 auto !important;
display: block !important;
top: 0 !important;
}
.banner-thumbnail-wrapper #thumbnail {
background-color: #FFF;
}
.color-overlay {
max-width: 1400px !important;
width: 100vw !important;
height: auto !important;
margin: 0 auto !important;
display: block !important;
top: 0 !important;
}
}