Hi once again,
Got the issue now. It happens because all the page counters start animating when they are above the 15% offset from the bottom of the page (that’s a kind of industry standard). And in certain screen resolutions your starting counters are located within this bottom 15%. In some future I’ll think about moving this to a certain option, till then you can use the next JavaScript code snippet to set the offset you want:
jQuery(function($){
if (window.$cl === undefined || window.$cl.scroll === undefined) return;
$.each($cl.scroll.waypoints, function(index, waypoint){
waypoint.offset = '0%';
});
$cl.scroll.resize();
});
When you apply it, all the counters will start instantly when they just appear on page. (Or you can just move your starting counters a bit up instead of using the code snippet).
Please let me know if I actually helped you, or whether you need my further assistance!