I've just begun learning about HTML and CSS (and a little Bootstrap) and I'm trying to make a simple scrolling webpage. My problem is that I cannot get the div background image to cover the full height of the page -- it only covers as far as the h2 text, like it thinks the end of that element is the end of the page. I have no idea why it's doing this and I haven't been able to fix it. This has really stumped me and I'm sure it has a really simple solution that I've missed. Any advice would be hugely appreciated.
Here is the codepen:
body {
background-color: rgb(255, 255, 255);
}
#front {
background: url("https://image.ibb.co/mjTmwv/port34.png") no-repeat;
overflow: hidden;
background-size: cover;
width: 100%;
height: 100%;
}
#h1 {
color: white;
font-size: 50px;
margin-top: 40vh;
padding: 10px;
background: rgba(43, 142, 255, 0.4);
}
#pt {
color: white;
font-size: 30px;
background: rgba(39, 220, 130, 0.4);
}
<ul style="z-index:9;">
<li>
<a class="active" href="#"><img class="img-fluid" style="width:auto;height:auto;max-height:26px;max-width:20px;" src="https://image.ibb.co/mg1s3a/lyreimage27.png" alt="website icon"></img> placeholder inc.</a>
</li>
<li><a href="#">About
</a>
</li>
<li><a style="text-decoration:none" href="#">Portfolio</a>
</li>
<li><a href="#">Contact</a>
</li>
</ul>
<header>
<div id="front">
<div class="container-fluid">
<h1 id="h1" class="text-center">Placeholder</h1>
<h2 id="pt" class="text-center">Placeholder Text</h2>
</header>
I cleaned up your markup a little bit (try not to use inline styles when possible) and think I achieved the effect you are looking for.