https://i.sstatic.net/ILwsO.jpg
Within the div labeled chatbox-container
, there are two chatboxes that have been positioned to float: right
with a margin-right: 15px
.
.chatbox-container {
position: fixed;
z-index: 1;
right: 0;
left: 0;
bottom: 0;
}
An issue arises when attempting to interact with elements directly underneath the chatbox-container
. For instance, clicking on text like 1,293 views
wouldn't work if it was meant to be a clickable button. Additionally, accessing the link of an image under the container becomes difficult.
Is there a solution to enable interaction with elements beneath the div?