I need help with a pop up modal on my website. I want the modal to stay in place even when scrolling down the page.
Here is the code for my modal:
<div class="modale" id="ouibounce-modal" style="display:none">
<button type="button" id="pop_up_close" class="close" data-dismiss="modal">×</button>
<img id="pop_up" src="images/caly_popup.png">
</div>
My attempted solution was:
.modale {
height: calc(100vh - 126px);
overflow-y:scroll;
}
Unfortunately, this solution did not work as expected. Can anyone provide guidance on how to make it function properly?