
Originally Posted by
incisor
really, i find it quite snappy most of the time
it isn't the worst by any stretch of the ones i visit
probably need another couple of hundred subscribers

The site pages can be very slow to load! Perhaps you use a non-add version?
The problem is with the advertising and tracking code, any element that is fetched from an external domain can be slow to deliver and the rest of the page will not load until a response is given.
You need to move all your javascript out of the HEAD and place it just before the closing </body> tag
Also use defer to force a script to execute after the DOM has loaded
HTML Code:
<script defer="defer"></script>
All advert space should be just empty placeholders, with javascript inserting the adverts into those placeholders after the DOM has loaded.
Your page content will then load as a priority and all the external trimmings will come after.
Bookmarks