I'd like to use an image as a background for my header. Here's what it looks like now:
As you can see, there's a blank space that I don't want here. I've tried using vh/vw, setting the body height at 100%, but it doesn't work.
.home .part1-img-container {
min-height: 650px;
background-color: grey;
background: url(assets/img/brooklyn.jpg) no-repeat center center scroll;
background-size: cover;
background-repeat: no-repeat;
text-align: center;
/*padding-top: 70px;*/
border-bottom-left-radius: 50% 10%;
border-bottom-right-radius: 50% 10%;
margin-bottom: 10px;
background-position-y: -187px;
}
<div class="part1 col-md-12 col-lg-12 p-0">
<div class="part1-img-container">
</div>
</div>