It's because there's no content behind it. I found that even without content, if I set its height to 100% it worked (in the Client265453/1352297198354_modalv3.css file, addition highlighted):
Code:
.drag-handle{ /*Overwrite default drag handle bar background color with below*/
background-color: #03277C;
}
#interVeil{ /*CSS for veil that covers entire page while modal window is visible*/
position: absolute;
background: black url(http://www.areadevelopment.com/images/blackdot.png);
height: 100% !important;
width: 10px;
left: 0;
top: 0;
z-index: 999998;
visibility: hidden;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=80);
opacity: 0.8;
}
Be sure to use the !important keyword as shown to override the scripted styles. This may mess up other browsers though. If not, fine, if so - just get some content to the page.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bottom line - as I first said, if you have a full page of content behind the modal, this shouldn't be a problem.
Bookmarks