To create a collapsible div for the about section of the navbar, give it the class="collapse"
and an id such as id="navbarHeader"
.
For the button, add
data-toggle="collapse" data-target="#navbarHeader"
Ensure that you have included the necessary Bootstrap JavaScript imports (as well as styles):
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
Visit this stackblitz link for guidance (it's a replica of the album page mentioned).
<header>
<div class="collapse bg-dark" id="navbarHeader">
<div class="container" style="height:200px">
<!-- insert your hidden content here (expands to fit the height of content) -->
<!-- if no content, just remove or adjust the height style, e.g., "style=height:200px" can be removed -->
</div>
</div>
<div class="navbar navbar-dark bg-dark">
<div class="container">
<a href="#" class="navbar-brand d-flex align-items-center">
<!-- replace with brand text/image -->
</a>
<!-- Menu button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarHeader">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>