How to make my site load for each new page

or i want to add a loader to each and every new page of my site . without loader it seems internet is not working properly

If you have a premium account, you can add an html preloader to the analytics and tracking & analytics section (Dashboars > Sestting > Tracking & Analytics)

yes but the loader only appears at the starting of website load ,not for each and every page saperately.
How can i add loder to each page

Set it to:
Applied on: All pages

Still, loader comes only on the lending page. what to do make it active each page click.

J. D. I’ve tested the preloader for a client and apply it to all pages, but it appears only the first time you open the website.

So I don’t know…

After a couple of weeks of trying I managed to get this to work. You can see it working on each page, not just initial: www.badgesandstickers.co.uk. Paste code into Body- End on your Tracking & Analytics, apply to all pages:

.spinner { position: fixed; height: 2em; width: 2em; overflow: show; margin: auto; top: 0; left: 0; bottom: 0; right: 0; width: 70px; text-align: center; } .spinner > div { width: 18px; height: 18px; background-color: #F9C402 ; border-radius: 100%; display: inline-block; -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both; animation: sk-bouncedelay 1.4s infinite ease-in-out both; } .spinner .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .spinner .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } @-webkit-keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0) } 40% { -webkit-transform: scale(1.0) } } @keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1.0); transform: scale(1.0); } }

Thank you for sharing the way :wink:

It Works Thankyou So Much :blush:

No problem guys. Will hopefully lower the bounce rate now the page looks like it’s loading something!

The slow loading time was causing a huge bouncing rate for my clients websites, I used the preloader in the header, I had no idea that putting the code inside the body would make it work. Thanks again.