Hello there! I am relatively new to the world of coding and also to this platform, so please forgive any mistakes I may make along the way. Recently, I've been working on a project to create a site similar to Picrew, but I seem to have hit a roadblock. My goal is to align the character image at the top, with the selection buttons for other options located at the bottom: view image
However, the current alignment of the elements seems quite off, to say the least. I suspect it has to do with the combination of relative and absolute positioning I've used, but it was the only method I found to stack images on top of each other (like placing eyes on the head).
<body>
<div class="container">
<div class="row">
<div class="col">
<div class="navbar">
(Navbar content here)
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="img-display position-relative">
(Image elements here)
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="options-menu">
(Options menu content here)
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="options">
(Buttons for different options here)
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856K...<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c7a5a8a8b3b4b3b5a6b787f2e9f5e9f7">[email protected]</a>/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>