Override asbolute position on child container (modal window)
- by Shawn Mclean
I have a modal window that is pulled from the server and inserted into a container that is absolute positioned. When that window is triggered to open, it does not display properly, it positions itself inside the container and most of it is hidden.
Is there a specific css to be written for the container of the modal window (MyModalWindow). My code is as follows:
<div style="position:relative;">
<div style="position: absolute;">
<div id="MyModalWindow"> </div>
</div>
</div>
This is a jquery tools window.