I have created a simple python web site using Google App Engine. Currently, the page loads the forms/text first and then pictures second. When they load, things move around a bit until the layout is fully loaded.
Is there a way to make the page appear only when all components have loaded instead of piece by piece?
Thanks.
I don’t think this is a Python question per se; this happens in HTML unless you pre-specify the size of your images, ie
will cause the browser to redo the layout after the image loads, while
will not.