Appologies if this has been answered elsewhere, but I couldn't find anything.
I am working with jQueryTools Overlay. Working fine in chrome, but in IE-8 i have this issue that my overlaying Div pops up like a normal div, at the top of my form.
heres the html:
<div id="overlay" >
<img src="http://www.sanbaldo.com/wordpress/wp-content/bigrotation2.gif" class="img-load" />
</div>
heres the CSS:
#overlay
{
background: #DCDCDC;
border: 5px solid #666;
display: none;
height: 50%;
left: 50%;
opacity: 0.8;
position: relative;
top: 30%;
width: 50%;
}
.img-load
{
left: 50%;
position: relative;
top: 50%;
}
Jquery:
$(".button_small").click(function () {
$("#overlay").overlay().load();
});
