Hey @bug ,
Ah okay I see.
Yeah so most likely the class names are shared so the above CSS then applies to all elements containing that class name. The easiest and quickest option would be to find this header element from within your code base (it will be named banner-image so something along those lines) and then add a classname to it such as homepagebanner (see screenshot)
The add the CSS as follows:
@media(max-width:600px){
.homepagebanner {
height:600px;
}
.homepagebanner > img {
height:600px;
}
}
Essentially what we are doing here is targeting this element on it’s unique class name so it doesn’t affect any other elements.
If you can’t find the file, send a few screenshots of this section from within the Theme Customizer and from the code base and I can assist further. Thanks!
