After reading previous answers I tried removing position:fixed
, setting the opacity to 100 before fadeout, and adding display: inline-block
but nothing has worked so far.
Here is the site: http://www.theseamstressofbloomsbury.co.uk/lookbook/
The element to be faded out has the following CSS:
#loading-wrapper {
background: url(images/background.jpg) center top #eee9d1;
height: 100%;
width: 100%;
position: fixed;
z-index: 1000;
text-align:center;
color:#866a4b;
}
And jQuery:
$('#loading-wrapper').fadeOut('slow');
Related questions I looked into:
- fadeOut not working in IE7/IE8
- jquery IE Fadein and Fadeout Opacity
- Does jQuery's fadeIn() and fadeOut() not work with IE 8?
Any other tips?
Cheers!