Reputation: 473
When page is loaded in FireFox and IE the text is plain and then css is applied. Around 400 ms latency. This is not happening in Chrome.
Using Bootstrap v3.3.7
Aside main-menu.
How can I fix this effect?
Upvotes: 1
Views: 1106
Reputation: 821
You have render blocking elements in your HTML that are being loaded before the CSS is applied.
You should move all your JS to the BOTTOM of your page and make sure your CSS links are in your head.
If that does not work, take it one step further and pull out the CSS you need to render those items directly from your file and put it directly in your head. This is actually a known practice to make a page "appear" to load faster.
More info here:
Upvotes: 1