Skip Navigation

[Resolved] Change spinner position

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Our next available supporter will start replying to tickets in about 0.18 hours from now. Thank you for your understanding.

This topic contains 1 reply, has 2 voices.

Last updated by Christopher Amirian 1 year, 3 months ago.

Assisted by: Christopher Amirian.

Author
Posts
#2626091
Screenshot_2.jpg

I have added a spinner in infinite scrolling in my Toolset archive. Is there any way to change its position like placing it at the center of the page?

#2626439

Christopher Amirian
Supporter

Languages: English (English )

Hi there,

Yes, it is possible. The selector for that image is: .wpv_slide_loading_img

As there are inline styles assigned to it you might need to use "!important" in your CSS code to override the styling.

A simple force to stay center on all times can be:

.wpv_slide_loading_img {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}

But you need to add your CSS touch to make it work for your use-case.

Thanks.