Quote:
Originally Posted by Mum
Also i noticed it says '01 Days, 16 Hours, 48 Minutes, 55 Seconds.' It should really say 1 Day (no s), can this be fixed, if possible?
|
Try this code. Find this in your countdown.js file
Code:
CountActive = true;
LeadingZero = true;
DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds.";
And change it to this
Code:
CountActive = true;
LeadingZero = false;
DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds.";