I have different sections like "About me", "Contact", "Photo gallery" etc, and I want that when I open the site, the "About me" container to be displayed on the whole page, to fill the page without any content from the next section to appear.
<div class="container-fluid bg-2 text-left">
<div id="About me">
<h1 class="margin">About me</h1>
<p> My text here</p>
</div>
</div>
I have the "container-fluid" class for every container with content in the index file.
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
Any idea would be greatly appreciated!