Default Spinner on Page Load

Hi,

I am using a layout with a POD container. When the page inside the POD is first loading, there is a default spinner that Backendless puts in. It automatically locates itself in the top left of the POD container.

Is there anyway that I can center this in the POD (vertically and horizontally)?

I thought it might go away on publishing the app but it did not.

Hi @James_Hereford

Try to add the following CSS

.bl-layout-page-pod {
  display: flex;
  flex-direction: column;
}

Regards,
Vlad

Worked like a charm. Thanks Vlad!

1 Like