views:

89

answers:

2

Hi,

I built this site a couple of years back and but am now in the process of moving it to a new server.

However. I've noticed there is a split second of unstyled content show on page load when viewed in Firefox (3.5.7)?

And on checking in IE8, a less frequent and slightly more raggged effect also happens but only prior to caching?

The url is: http://www.rhubarbrentals.co.uk

If anyone can suggest how to fix this I would be grateful.

A: 

putting the

<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>

at the bottom of the page (right above </body>) might help some.

John Boker
A: 

you can use jQuery for this

$(document).ready(function() {
  $('#flash').hide();
});

where #flash is the div that contains your unstyled content. check this link for more details

pixeltocode