Currently, I am exploring HTML, CSS, and Bootstrap and facing a particular issue.
I am attempting to add a logo to a website as a background. I have already discovered how to do this by following the instructions here.
This website is comprised of a single HTML file where I have defined multiple sections. Users can navigate to different sections using the menu.
<div class="container-fluid p-0 ">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="a">
</section>
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="b">
</section>
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="c">
</section>
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="d">
</section>
</div>
Now, my goal is to ensure that the watermark remains centered, even when scrolling up or down the website. The code provided in the link only displays the watermark on the first section.
How can I achieve the watermark appearing in the middle at all times, regardless of scrolling?