Hi Egg!
I have thought about your question.
The site seems to be using the first variant of the code and uses this CSS:
Code:
.xw_stretch {left:50% !important;
-webkit-transform-origin:0 0;
-moz-transform-origin:0 0;
-ms-transform-origin:0 0;
transform-origin:0 0;
}
This moves the placeholder to the right. This effect is immediately visible before all the init stuff is done.
That effect can be compensated by adding margin-left=-50%; so that it looks like:
Code:
.xw_stretch {left:50% !important;
margin-left:-50%;
-webkit-transform-origin:0 0;
-moz-transform-origin:0 0;
-ms-transform-origin:0 0;
transform-origin:0 0;
}
Is that what you meant?