Hello,
I’m having issues with overlapping my header and the main image on my site. I’m using the Debut Theme. The image looks great on Mobile and on Desktop mode. When it’s in Full-Screen, the image gets chopped off or overlapped by the header. I’ve tried adding white space to the image, but it doesn’t help.
Can you help me figure out how to fix this? www.narwhalcollection.com
That happen because your image height is greater than 475px and this value is hard-coded in the theme CSS file.
@media only screen and (min-width: 750px) {
.hero--medium {
height: 475px;
}
}
You could increase this value to 830px for better result.
You can try to add this code to the end of you theme.css file
@media only screen and (min-width: 750px) {
.hero--medium {
height: 830px;
}
}