I am facing an issue with two buttons placed within a container div
that is being overlapped by another container div
.
The bottom container overlaps the top one, rendering the buttons unclickable. I have been trying to find a solution to make the buttons clickable without adjusting the z-index of the top container higher than the bottom one, as it would affect the background display. I have experimented with various z-index settings but haven't found a satisfactory solution yet.
If anyone has any insights or suggestions on how to resolve this issue, please share your thoughts!
Below is the code for the top container div
:
(CSS code for top div)
...
... (The CSS code goes here)
...
...
<div class="container banner">
...
... (HTML code for top div)
...
</div>
And here is the code for the bottom container div
:
(CSS code for bottom div)
...
... (The CSS code goes here)
...
...
<div class="container onze-section">
...
... (HTML code for bottom div)
...
</div>