When I load a page with Chrome I see html elements on the right until rendering end. After rendering end, elements are correctly at the center of the screen. Take a look :
I haven't this problem with IE or firefox... How can I fix it?
When I load a page with Chrome I see html elements on the right until rendering end. After rendering end, elements are correctly at the center of the screen. Take a look :
I haven't this problem with IE or firefox... How can I fix it?
I noticed that it's mainly the header that's doing this.
You're doing some old-school stuff like using tables to center the header. '#headerContainerTable' looks like a disaster waiting to happen so maybe that's why you're seeing this rendering.
Personally I'd take "#headerContainer" and center it with css without putting it inside a table. So just remove it from that #headerContainerTable and put it right under #headerPanel then use css horizontally center it (see here: How to horizontally center a <div> in another <div>?)
If you want a quick hack maybe try setting a fixed width to your:
#headerContainerTdLeft
#headerContainerTdRight
just to see what it does..