How to Change the Default Loading Icon
Updated over a week ago

DEPRECATED - we now only support our standard loading screen, however you can still change the background-color.

So we see you don't like the beautiful PeopleVine loading animation that are talented designer Tyler created? Not a problem, we've made it easy for you to swap out. Follow these steps to swap it out:

  1. Upload your new loading gif to the PeopleVine CDN by clicking on your company name and upload media.

  2. Once uploaded, grab the URL for that file as you'll need it for the next step.

  3. Go to your page layout(s) (under engage) and edit the page layout you want to update.

  4. Add the following line of code to your footer:

<script>
   $("#loading-image").attr("src","URL FROM STEP 2");
</script>

5. You may also want to change the background color, in this case you can add the following line to your CSS for the layout:

#loading { background-color: rgba(255,255,255,0.85); }
Did this answer your question?